Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 21 additions & 12 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift", from: "5.1.1"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.8.1"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.0.0"),
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.8.5"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.3.0"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "0.2.0")
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.0.2"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.1.0"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.0.0")
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0")
],
targets: [
.target(
Expand All @@ -33,6 +34,7 @@ let package = Package(
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
.product(name: "CustomDump", package: "swift-custom-dump"),
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
]
),
.testTarget(
Expand Down
3 changes: 2 additions & 1 deletion RxComposableArchitecture.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'RxComposableArchitecture'
s.version = '0.17.0'
s.version = '0.50.5'
s.summary = 'The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.'
s.description = <<-DESC
The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
Expand All @@ -33,5 +33,6 @@ Pod::Spec.new do |s|
s.dependency 'XCTestDynamicOverlay'
s.dependency 'CustomDump'
s.dependency 'Dependencies'
s.dependency 'ConcurrencyExtras'

end
2 changes: 1 addition & 1 deletion development-podspecs/CasePaths.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"source": {
"git": "https://github.com/pointfreeco/swift-case-paths",
"tag": "0.8.1"
"tag": "1.0.0"
},
"source_files": "Sources/**/*.swift",
"swift_version": "5.0"
Expand Down
2 changes: 1 addition & 1 deletion development-podspecs/CustomDump.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"source": {
"git": "https://github.com/pointfreeco/swift-custom-dump.git",
"tag": "0.9.1"
"tag": "1.1.0"
},
"ios": {
"source_files": "Sources/CustomDump/**/*.swift"
Expand Down
20 changes: 20 additions & 0 deletions development-podspecs/swift-concurrency-extras.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "ConcurrencyExtras",
"version": "1.0.0",
"authors": "local pod",
"homepage": "https://github.com/pointfreeco/swift-concurrency-extras",
"summary": "local pod",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"platforms": {
"ios": "13.0"
},
"source": {
"git": "https://github.com/pointfreeco/swift-concurrency-extras",
"tag": "1.0.0"
},
"source_files": "Sources/ConcurrencyExtras/**/*.swift",
"swift_version": "5.0"
}
2 changes: 1 addition & 1 deletion development-podspecs/swift-dependencies.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"source": {
"git": "https://github.com/pointfreeco/swift-dependencies",
"tag": "0.2.0"
"tag": "1.0.0"
},
"source_files": "Sources/**/*.swift",
"swift_version": "5.0"
Expand Down
2 changes: 1 addition & 1 deletion development-podspecs/xctest-dynamic-overlay.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"source": {
"git": "https://github.com/pointfreeco/xctest-dynamic-overlay",
"tag": "0.8.5"
"tag": "1.0.2"
},
"source_files": "Sources/**/*.swift",
"swift_version": "5.0"
Expand Down