Skip to content

Commit

Permalink
Release 5.0.0 (#413)
Browse files Browse the repository at this point in the history
* update Podspec
* update CHANGELOG
* update README
* update Xcode project version
  • Loading branch information
DivineDominion committed Jul 2, 2019
1 parent 73b92d3 commit b92762b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
@@ -1,4 +1,6 @@
# Upcoming
# 5.0.0

*Released: 2019-06-30*

**Breaking API Changes:**
- Remove `StandardAction` and `StandardActionConvertible` (#270) - @mjarvis
Expand All @@ -13,7 +15,7 @@

**Other:**
- Resolve Xcode 10.2 warnings with Swift 4.2.2 and 5.0 (#397) - @mjarvis
- Update Swift Package Manager support (#403) - @Dschee
- Update Swift Package Manager support (#403, #411) - @Dschee, @hoemoon

# 4.1.1

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -192,7 +192,7 @@ github "ReSwift/ReSwift"
You can install ReSwift via [Accio](https://github.com/JamitLabs/Accio) by adding the following line to your `Package.swift`:

```swift
.package(url: "https://github.com/ReSwift/ReSwift.git", .upToNextMajor(from: "4.1.1")),
.package(url: "https://github.com/ReSwift/ReSwift.git", .upToNextMajor(from: "5.0.0")),
```

Next, add `ReSwift` to your App targets dependencies like so:
Expand All @@ -218,7 +218,7 @@ import PackageDescription
let package = Package(
[...]
dependencies: [
.package(url: "https://github.com/ReSwift/ReSwift.git", from: "4.1.1"),
.package(url: "https://github.com/ReSwift/ReSwift.git", from: "5.0.0"),
]
)
```
Expand Down
21 changes: 16 additions & 5 deletions ReSwift.podspec
@@ -1,21 +1,32 @@
Pod::Spec.new do |s|
s.name = "ReSwift"
s.version = "4.0.1"
s.version = "5.0.0"
s.summary = "Unidirectional Data Flow in Swift"
s.description = <<-DESC
ReSwift is a Redux-like implementation of the unidirectional data flow architecture in Swift.
It embraces a unidirectional data flow that only allows state mutations through declarative actions.
DESC
s.homepage = "https://github.com/ReSwift/ReSwift"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Benjamin Encz" => "me@benjamin-encz.de" }
s.author = {
"Benjamin Encz" => "me@benjamin-encz.de",
"Karl Bowden" => "karl@karlbowden.com",
"Malcolm Jarvis" => "malcolm@boolable.ca",
"Christian Tietze" => "me@christiantietze.de"
}
s.documentation_url = "http://reswift.github.io/ReSwift/"
s.social_media_url = "http://twitter.com/benjaminencz"
s.source = { :git => "https://github.com/ReSwift/ReSwift.git", :tag => s.version.to_s }
s.social_media_url = "http://twitter.com/benjaminencz"
s.source = {
:git => "https://github.com/ReSwift/ReSwift.git",
:tag => s.version.to_s
}

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true

s.requires_arc = true
s.source_files = 'ReSwift/**/*.swift'
s.swift_versions = [ "5.0", "4.2", "3.2" ]
end
2 changes: 1 addition & 1 deletion ReSwift/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.0.1</string>
<string>5.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit b92762b

Please sign in to comment.