Skip to content

Commit

Permalink
prepare for 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxiu committed Nov 14, 2019
1 parent 765a03f commit ed68f8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ Open-source implementation of Apple's [Combine](https://developer.apple.com/docu

```swift
dependencies.append(
.package(url: "https://github.com/cx-org/CombineX", .branch("master"))
.package(url: "https://github.com/cx-org/CombineX", from: "0.1.0")
)
```

#### CocoaPods

```ruby
pod 'CombineX', :git => 'https://github.com/cx-org/CombineX.git', :branch => 'master'
pod 'CombineX', "~> 0.1.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" "master"
github "cx-org/CombineX" ~> 0.1.0
```

Some features are not available with specific PM.

| Swift PM | CocoaPods | Carthage |
| | Swift PM | CocoaPods | Carthage |
| --- | --- | --- | --- |
| CXShim | Yes | No | No |
| ObserableObject | Yes | No | No |
Expand Down
8 changes: 4 additions & 4 deletions README_zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,25 @@

```swift
dependencies.append(
.package(url: "https://github.com/cx-org/CombineX", .branch("master"))
.package(url: "https://github.com/cx-org/CombineX", from: "0.1.0")
)
```

#### CocoaPods

```ruby
pod 'CombineX', :git => 'https://github.com/cx-org/CombineX.git', :branch => 'master'
pod 'CombineX', "~> 0.1.0"
```

#### Carthage

```carthage
github "cx-org/CombineX" "master"
github "cx-org/CombineX" ~> 0.1.0
```

部分特性在某些安装方式下不可用。

| Swift PM | CocoaPods | Carthage |
| | Swift PM | CocoaPods | Carthage |
| --- | --- | --- | --- |
| CXShim | Yes | No | No |
| ObserableObject | Yes | No | No |
Expand Down

0 comments on commit ed68f8f

Please sign in to comment.