Skip to content

Commit 657b907

Browse files
authored
Merge pull request #17 from ReSwift/mjarvis/1.1.0
Configure Project & Repository for 1.1.0 Release
2 parents 75964e7 + 1fd4faa commit 657b907

File tree

5 files changed

+28
-3
lines changed

5 files changed

+28
-3
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Upcoming
2+
3+
**Breaking API Changes:**
4+
5+
**API Changes:**
6+
7+
**Fixes:**
8+
9+
**Other:**
10+
11+
# 1.1.0
12+
13+
*Released: 01/16/2019*
14+
15+
**API Changes:**
16+
- Renames `ThunkAction` to `Thunk`
17+
- Renames `ThunkMiddleware()` to `createThunkMiddleware()`
18+
- Adds deprecated forwards for `ThunkAction` and `ThunkMiddleware()`
19+
20+
**Other:**
21+
- This project has been migrated from https://github.com/mikecole20/ReSwiftThunk/ along with some backwards-compatible API changes documented above.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ReSwift-Thunk
22

3-
[![Build Status](https://img.shields.io/travis/ReSwift/ReSwift-Thunk/master.svg?style=flat-square)](https://travis-ci.org/ReSwift/ReSwift-Thunk) [![Code coverage status](https://img.shields.io/codecov/c/github/ReSwift/ReSwift-Thunk.svg?style=flat-square)](http://codecov.io/github/ReSwift/ReSwift-Thunk) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/ReSwift-Thunk.svg?style=flat-square)](https://cocoapods.org/pods/ReSwift-Thunk) [![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/ReSwift/ReSwift-Thunk/blob/master/LICENSE.md) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/ReSwift/ReSwift-Thunk/blob/master/LICENSE.md) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg?style=flat-square)](https://houndci.com)
3+
[![Build Status](https://img.shields.io/travis/ReSwift/ReSwift-Thunk/master.svg?style=flat-square)](https://travis-ci.org/ReSwift/ReSwift-Thunk) [![Code coverage status](https://img.shields.io/codecov/c/github/ReSwift/ReSwift-Thunk.svg?style=flat-square)](http://codecov.io/github/ReSwift/ReSwift-Thunk) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/ReSwiftThunk.svg?style=flat-square)](https://cocoapods.org/pods/ReSwiftThunk) [![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/ReSwift/ReSwift-Thunk/blob/master/LICENSE.md) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/ReSwift/ReSwift-Thunk/blob/master/LICENSE.md) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg?style=flat-square)](https://houndci.com)
44

55
**Supported Swift Versions:** Swift 4.1, Swift 4.2
66

ReSwift-Thunk.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
65A3D6EF218B8A300075CB92 /* Thunk.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Thunk.swift; sourceTree = "<group>"; };
3636
65A3D6F2218C91F20075CB92 /* ReSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReSwift.framework; path = Carthage/Build/iOS/ReSwift.framework; sourceTree = "<group>"; };
3737
65A3D6F4218C92420075CB92 /* createThunksMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = createThunksMiddleware.swift; sourceTree = "<group>"; };
38+
D4286E7721EFED3F00D5749B /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
39+
D4286E7821EFED4D00D5749B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
3840
/* End PBXFileReference section */
3941

4042
/* Begin PBXFrameworksBuildPhase section */
@@ -60,6 +62,8 @@
6062
65A3D6CB218B89A60075CB92 = {
6163
isa = PBXGroup;
6264
children = (
65+
D4286E7721EFED3F00D5749B /* CHANGELOG.md */,
66+
D4286E7821EFED4D00D5749B /* README.md */,
6367
65A3D6D7218B89A60075CB92 /* ReSwift-Thunk */,
6468
65A3D6E2218B89A60075CB92 /* ReSwift-ThunkTests */,
6569
65A3D6D6218B89A60075CB92 /* Products */,

ReSwift-Thunk/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

ReSwiftThunk.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "ReSwiftThunk"
3-
spec.version = "1.0.0-pre"
3+
spec.version = "1.1.0"
44
spec.summary = "Thunk middleware for ReSwift."
55
spec.description = <<-DESC
66
ReSwift-Thunk allows you to write action creators that return a function instead of an action. Instead of dispatching an `Action` directly, you can dispatch a `Thunk` that creates an action at a later time, for example after a network request finishes.

0 commit comments

Comments
 (0)