Skip to content

Commit

Permalink
release v0.7.0 (#124)
Browse files Browse the repository at this point in the history
* update ReSwift dependency to 5.x

* update lib version strings to 0.7.0

* update Changelog for 0.7.0
  • Loading branch information
DivineDominion authored Jul 31, 2019
1 parent 0b75f47 commit b08ee2f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "ReSwift/ReSwift" ~> 4.1.1
github "ReSwift/ReSwift" ~> 5.0.0
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Upcoming

# 0.7.0

*Released: 2019-08-01*

**Breaking API Changes:**
- Remove use of `StandardAction` and `StandardActionConvertible` (#82) - @hlineholm

Expand All @@ -10,7 +14,8 @@
- Renamed `routableIndexForRouteSegment(_ segment:)` method to `routableIndex(for segment:)`

**Other:**
- Update to ReSwift 4.1.1 and fix project setup for SwiftPM & Carthage - @djtech42
- Update to Swift 5 -- @djtech42
- Update to ReSwift 5.0.0 and fix project setup for SwiftPM & Carthage (#115, #124) - @djtech42, @DivineDominion

# 0.6.0

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ let package = Package(
.library(name: "ReSwift-Router", targets: ["ReSwiftRouter"]),
],
dependencies: [
.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"))
],
targets: [
.target(
name: "ReSwiftRouter",
dependencies: [
"ReSwift"
],
],
path: "ReSwiftRouter"
)
]
Expand Down
4 changes: 2 additions & 2 deletions ReSwiftRouter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ReSwiftRouter"
s.version = "0.6.0"
s.version = "0.7.0"
s.summary = "Declarative Routing for ReSwift"
s.description = <<-DESC
A declarative router for ReSwift. Allows developers to declare routes in a similar manner as
Expand All @@ -18,5 +18,5 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'ReSwiftRouter/**/*.swift'
s.dependency 'ReSwift', '~> 4.1.1'
s.dependency 'ReSwift', '~> 5.0.0'
end
2 changes: 1 addition & 1 deletion ReSwiftRouter/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.6.1</string>
<string>0.7.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit b08ee2f

Please sign in to comment.