Skip to content

Commit

Permalink
Merge pull request #125 from luoxiu/feature/prepare-for-0.4.0
Browse files Browse the repository at this point in the history
prepare for 0.4.0
  • Loading branch information
luoxiu authored Jul 4, 2021
2 parents a995fa6 + bfdc77d commit 98096c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CombineX.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "CombineX"
s.version = "0.3.2"
s.version = "0.4.0"
s.summary = "Open source implementation for Apple's Combine."
s.homepage = "https://github.com/cx-org/CombineX"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ 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.3.2"),
.package(url: "https://github.com/cx-org/CombineX", from: "0.4.0"),
]
```

#### CocoaPods

```ruby
pod 'CombineX', "~> 0.3.2"
pod 'CombineX', "~> 0.4.0"

# or, if you want to use `Foundation` extensions:
pod 'CombineX/CXFoundation', "~> 0.3.2"
pod 'CombineX/CXFoundation', "~> 0.4.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" ~> 0.3.2
github "cx-org/CombineX" ~> 0.4.0
```

## Related Projects
Expand Down
8 changes: 4 additions & 4 deletions README_zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@

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

#### CocoaPods

```ruby
pod 'CombineX', "~> 0.3.2"
pod 'CombineX', "~> 0.4.0"

# 或者,如果你想用 `Foundation` 扩展:
pod 'CombineX/CXFoundation', "~> 0.3.2"
pod 'CombineX/CXFoundation', "~> 0.4.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" ~> 0.3.2
github "cx-org/CombineX" ~> 0.4.0
```

## 相关项目
Expand Down

0 comments on commit 98096c6

Please sign in to comment.