Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump CasePath #104

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/pointfreeco/combine-schedulers",
"state": {
"branch": null,
"revision": "0625932976b3ae23949f6b816d13bd97f3b40b7c",
"version": "0.10.0"
"revision": "9dc9cbe4bc45c65164fa653a563d8d8db61b09bb",
"version": "1.0.0"
}
},
{
Expand Down Expand Up @@ -42,44 +42,53 @@
"repositoryURL": "https://github.com/pointfreeco/swift-case-paths",
"state": {
"branch": null,
"revision": "ce9c0d897db8a840c39de64caaa9b60119cf4be8",
"version": "0.8.1"
"revision": "5da6989aae464f324eef5c5b52bdb7974725ab81",
"version": "1.0.0"
}
},
{
"package": "swift-clocks",
"repositoryURL": "https://github.com/pointfreeco/swift-clocks",
"state": {
"branch": null,
"revision": "f9acfa1a45f4483fe0f2c434a74e6f68f865d12d",
"version": "0.3.0"
"revision": "d1fd837326aa719bee979bdde1f53cd5797443eb",
"version": "1.0.0"
}
},
{
"package": "swift-concurrency-extras",
"repositoryURL": "https://github.com/pointfreeco/swift-concurrency-extras",
"state": {
"branch": null,
"revision": "ea631ce892687f5432a833312292b80db238186a",
"version": "1.0.0"
}
},
{
"package": "swift-custom-dump",
"repositoryURL": "https://github.com/pointfreeco/swift-custom-dump",
"state": {
"branch": null,
"revision": "0dd3e712ff2e557144dddced800c517c3102a069",
"version": "0.9.0"
"revision": "3efbfba0e4e56c7187cc19137ee16b7c95346b79",
"version": "1.1.0"
}
},
{
"package": "swift-dependencies",
"repositoryURL": "https://github.com/pointfreeco/swift-dependencies",
"state": {
"branch": null,
"revision": "ad0a6a0dd4d4741263e798f4f5029589c9b5da73",
"version": "0.4.2"
"revision": "4e1eb6e28afe723286d8cc60611237ffbddba7c5",
"version": "1.0.0"
}
},
{
"package": "xctest-dynamic-overlay",
"repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state": {
"branch": null,
"revision": "4af50b38daf0037cfbab15514a241224c3f62f98",
"version": "0.8.5"
"revision": "23cbf2294e350076ea4dbd7d5d047c1e76b03631",
"version": "1.0.2"
}
}
]
Expand Down
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
Loading