Skip to content

Commit

Permalink
Bump the version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
broadwaylamb committed Oct 29, 2020
1 parent 2d857d6 commit 9bba508
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion OpenCombine.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "OpenCombine"
spec.version = "0.10.2"
spec.version = "0.11.0"
spec.summary = "Open source implementation of Apple's Combine framework for processing values over time."

spec.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions OpenCombineDispatch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "OpenCombineDispatch"
spec.version = "0.10.2"
spec.version = "0.11.0"
spec.summary = "OpenCombine + Dispatch interoperability"

spec.description = <<-DESC
Expand All @@ -21,5 +21,5 @@ Pod::Spec.new do |spec|
spec.tvos.deployment_target = "9.0"

spec.source_files = "Sources/OpenCombineDispatch/**/*.swift"
spec.dependency "OpenCombine", '>= 0.10.1'
spec.dependency "OpenCombine", '>= 0.10.2'
end
4 changes: 2 additions & 2 deletions OpenCombineFoundation.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "OpenCombineFoundation"
spec.version = "0.10.2"
spec.version = "0.11.0"
spec.summary = "OpenCombine + OpenCombineFoundation interoperability"

spec.description = <<-DESC
Expand All @@ -21,5 +21,5 @@ Pod::Spec.new do |spec|
spec.tvos.deployment_target = "9.0"

spec.source_files = "Sources/OpenCombineFoundation/**/*.swift"
spec.dependency "OpenCombine", '>= 0.10.1'
spec.dependency "OpenCombine", '>= 0.10.2'
end
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To add `OpenCombine` to your [SPM](https://swift.org/package-manager/) package,

```swift
dependencies: [
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.10.2")
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.11.0")
],
targets: [
.target(name: "MyAwesomePackage", dependencies: ["OpenCombine",
Expand All @@ -44,9 +44,9 @@ To do so, open Xcode, use **File** → **Swift Packages** → **Add Package Depe
To add `OpenCombine` to a project using [CocoaPods](https://cocoapods.org/), add `OpenCombine` and `OpenCombineDispatch` to the list of target dependencies in your `Podfile`.

```ruby
pod 'OpenCombine', '~> 0.10.2'
pod 'OpenCombineDispatch', '~> 0.10.2'
pod 'OpenCombineFoundation', '~> 0.10.2'
pod 'OpenCombine', '~> 0.11.0'
pod 'OpenCombineDispatch', '~> 0.11.0'
pod 'OpenCombineFoundation', '~> 0.11.0'
```

### Contributing
Expand Down

0 comments on commit 9bba508

Please sign in to comment.