Skip to content
This repository was archived by the owner on May 10, 2025. It is now read-only.

Commit 96cd76c

Browse files
authored
Merge pull request #100 from cx-org/version-0.3.0
prepare for v0.3.0
2 parents b85c0d6 + 6958be2 commit 96cd76c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ enum CombineImplementation {
7171

7272
var extraPackageDependencies: [Package.Dependency] {
7373
switch self {
74-
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.8.0"))]
74+
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.11.0"))]
7575
default: return []
7676
}
7777
}

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ enum CombineImplementation {
7777

7878
var extraPackageDependencies: [Package.Dependency] {
7979
switch self {
80-
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.8.0"))]
80+
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.11.0"))]
8181
default: return []
8282
}
8383
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ Open-source implementation of Apple's [Combine](https://developer.apple.com/docu
3030

3131
```swift
3232
package.dependencies += [
33-
.package(url: "https://github.com/cx-org/CombineX", from: "0.2.1"),
33+
.package(url: "https://github.com/cx-org/CombineX", from: "0.3.0"),
3434
]
3535
```
3636

3737
#### CocoaPods
3838

3939
```ruby
40-
pod 'CombineX', "~> 0.2.1"
40+
pod 'CombineX', "~> 0.3.0"
4141
```
4242

4343
#### Carthage
4444

4545
```carthage
46-
github "cx-org/CombineX" ~> 0.2.1
46+
github "cx-org/CombineX" ~> 0.3.0
4747
```
4848

4949
CXShim is only available with Swift Package Manager.

README_zh-Hans.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828

2929
```swift
3030
package.dependencies += [
31-
.package(url: "https://github.com/cx-org/CombineX", from: "0.2.1"),
31+
.package(url: "https://github.com/cx-org/CombineX", from: "0.3.0"),
3232
]
3333
```
3434

3535
#### CocoaPods
3636

3737
```ruby
38-
pod 'CombineX', "~> 0.2.1"
38+
pod 'CombineX', "~> 0.3.0"
3939
```
4040

4141
#### Carthage
4242

4343
```carthage
44-
github "cx-org/CombineX" ~> 0.2.1
44+
github "cx-org/CombineX" ~> 0.3.0
4545
```
4646

4747
CXShim 仅在 Swift Package Manager 下可用。

0 commit comments

Comments
 (0)