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

prepare for 0.4.0 #125

Merged
merged 1 commit into from Jul 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CombineX.podspec
@@ -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
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
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