Skip to content

Commit 80e0aca

Browse files
committed
Bump up version to 0.8.10
1 parent dd554bc commit 80e0aca

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

CombineRex.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CombineRex'
3-
s.version = '0.8.9'
3+
s.version = '0.8.10'
44
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using RxSwift.'
55
s.description = <<-DESC
66
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
@@ -23,5 +23,5 @@ Pod::Spec.new do |s|
2323
s.swift_version = '5.3'
2424

2525
s.source_files = "Sources/CombineRex/**/*.swift"
26-
s.dependency 'SwiftRex', '~> 0.8.9'
26+
s.dependency 'SwiftRex', '~> 0.8.10'
2727
end

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ let package = Package(
13701370
.executable(name: "MyApp", targets: ["MyApp"])
13711371
],
13721372
dependencies: [
1373-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
1373+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
13741374
],
13751375
targets: [
13761376
.target(name: "MyApp", dependencies: [.product(name: "CombineRex", package: "SwiftRex")])
@@ -1391,7 +1391,7 @@ let package = Package(
13911391
.executable(name: "MyApp", targets: ["MyApp"])
13921392
],
13931393
dependencies: [
1394-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
1394+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
13951395
],
13961396
targets: [
13971397
.target(name: "MyApp", dependencies: [.product(name: "RxSwiftRex", package: "SwiftRex")])
@@ -1412,7 +1412,7 @@ let package = Package(
14121412
.executable(name: "MyApp", targets: ["MyApp"])
14131413
],
14141414
dependencies: [
1415-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
1415+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
14161416
],
14171417
targets: [
14181418
.target(name: "MyApp", dependencies: [.product(name: "ReactiveSwiftRex", package: "SwiftRex")])
@@ -1433,7 +1433,7 @@ let package = Package(
14331433
.executable(name: "MyApp", targets: ["MyApp"])
14341434
],
14351435
dependencies: [
1436-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
1436+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
14371437
],
14381438
targets: [
14391439
.target(name: "MyApp", dependencies: [.product(name: "CombineRexDynamic", package: "SwiftRex")])

ReactiveSwiftRex.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ReactiveSwiftRex'
3-
s.version = '0.8.9'
3+
s.version = '0.8.10'
44
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using ReactiveSwift.'
55
s.description = <<-DESC
66
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
@@ -23,6 +23,6 @@ Pod::Spec.new do |s|
2323
s.swift_version = '5.3'
2424

2525
s.source_files = "Sources/ReactiveSwiftRex/**/*.swift"
26-
s.dependency 'SwiftRex', '~> 0.8.9'
26+
s.dependency 'SwiftRex', '~> 0.8.10'
2727
s.dependency 'ReactiveSwift', '~> 7.0.0'
2828
end

RxSwiftRex.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'RxSwiftRex'
3-
s.version = '0.8.9'
3+
s.version = '0.8.10'
44
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using RxSwift.'
55
s.description = <<-DESC
66
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
@@ -23,6 +23,6 @@ Pod::Spec.new do |s|
2323
s.swift_version = '5.3'
2424

2525
s.source_files = "Sources/RxSwiftRex/**/*.swift"
26-
s.dependency 'SwiftRex', '~> 0.8.9'
26+
s.dependency 'SwiftRex', '~> 0.8.10'
2727
s.dependency 'RxSwift', '~> 6.2.0'
2828
end

Sources/SwiftRex/SwiftRex.docc/discussions/Installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ let package = Package(
7171
.executable(name: "MyApp", targets: ["MyApp"])
7272
],
7373
dependencies: [
74-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
74+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
7575
],
7676
targets: [
7777
.target(name: "MyApp", dependencies: [.product(name: "CombineRex", package: "SwiftRex")])
@@ -92,7 +92,7 @@ let package = Package(
9292
.executable(name: "MyApp", targets: ["MyApp"])
9393
],
9494
dependencies: [
95-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
95+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
9696
],
9797
targets: [
9898
.target(name: "MyApp", dependencies: [.product(name: "RxSwiftRex", package: "SwiftRex")])
@@ -113,7 +113,7 @@ let package = Package(
113113
.executable(name: "MyApp", targets: ["MyApp"])
114114
],
115115
dependencies: [
116-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
116+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
117117
],
118118
targets: [
119119
.target(name: "MyApp", dependencies: [.product(name: "ReactiveSwiftRex", package: "SwiftRex")])
@@ -134,7 +134,7 @@ let package = Package(
134134
.executable(name: "MyApp", targets: ["MyApp"])
135135
],
136136
dependencies: [
137-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
137+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.10")
138138
],
139139
targets: [
140140
.target(name: "MyApp", dependencies: [.product(name: "CombineRexDynamic", package: "SwiftRex")])

Sources/SwiftRex/SwiftRex.docc/discussions/Installation.md.bkp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ let package = Package(
7171
.executable(name: "MyApp", targets: ["MyApp"])
7272
],
7373
dependencies: [
74-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.8")
74+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
7575
],
7676
targets: [
7777
.target(name: "MyApp", dependencies: [.product(name: "CombineRex", package: "SwiftRex")])
@@ -92,7 +92,7 @@ let package = Package(
9292
.executable(name: "MyApp", targets: ["MyApp"])
9393
],
9494
dependencies: [
95-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.8")
95+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
9696
],
9797
targets: [
9898
.target(name: "MyApp", dependencies: [.product(name: "RxSwiftRex", package: "SwiftRex")])
@@ -113,7 +113,7 @@ let package = Package(
113113
.executable(name: "MyApp", targets: ["MyApp"])
114114
],
115115
dependencies: [
116-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.8")
116+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
117117
],
118118
targets: [
119119
.target(name: "MyApp", dependencies: [.product(name: "ReactiveSwiftRex", package: "SwiftRex")])
@@ -134,7 +134,7 @@ let package = Package(
134134
.executable(name: "MyApp", targets: ["MyApp"])
135135
],
136136
dependencies: [
137-
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.8")
137+
.package(url: "https://github.com/SwiftRex/SwiftRex.git", from: "0.8.9")
138138
],
139139
targets: [
140140
.target(name: "MyApp", dependencies: [.product(name: "CombineRexDynamic", package: "SwiftRex")])

SwiftRex.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftRex'
3-
s.version = '0.8.9'
3+
s.version = '0.8.10'
44
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift'
55
s.description = <<-DESC
66
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.

0 commit comments

Comments
 (0)