Skip to content

Commit

Permalink
Merge pull request #100 from cx-org/version-0.3.0
Browse files Browse the repository at this point in the history
prepare for v0.3.0
  • Loading branch information
luoxiu authored Dec 7, 2020
2 parents b85c0d6 + 6958be2 commit 96cd76c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ enum CombineImplementation {

var extraPackageDependencies: [Package.Dependency] {
switch self {
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.8.0"))]
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.11.0"))]
default: return []
}
}
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.2.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ enum CombineImplementation {

var extraPackageDependencies: [Package.Dependency] {
switch self {
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.8.0"))]
case .openCombine: return [.package(url: "https://github.com/broadwaylamb/OpenCombine", .upToNextMinor(from: "0.11.0"))]
default: return []
}
}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ Open-source implementation of Apple's [Combine](https://developer.apple.com/docu

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

#### CocoaPods

```ruby
pod 'CombineX', "~> 0.2.1"
pod 'CombineX', "~> 0.3.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" ~> 0.2.1
github "cx-org/CombineX" ~> 0.3.0
```

CXShim is only available with Swift Package Manager.
Expand Down
6 changes: 3 additions & 3 deletions README_zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@

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

#### CocoaPods

```ruby
pod 'CombineX', "~> 0.2.1"
pod 'CombineX', "~> 0.3.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" ~> 0.2.1
github "cx-org/CombineX" ~> 0.3.0
```

CXShim 仅在 Swift Package Manager 下可用。
Expand Down

0 comments on commit 96cd76c

Please sign in to comment.