Skip to content

Commit

Permalink
1.1.1 release (#19)
Browse files Browse the repository at this point in the history
* 1.1.1 release

* Fix deployment target to reality

* Update CHANGELOG for 1.1.1 release

* update exclude
  • Loading branch information
garrettmoon authored Feb 23, 2018
1 parent 7b970ef commit af6665f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## master
* Add your own contributions to the next release on the line below this with your name.

## 1.1.1 -- 2018 February 3
* Cleanup warnings [garrett](https://github.com/garrettmoon)

## 1.1 -- 2017 October 7
* Deprecate addOperation: in favor of scheduleOperation: [garrett](https://github.com/garrettmoon)

Expand Down
4 changes: 3 additions & 1 deletion CI/exclude-from-build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[
"^plans/",
"^docs/",
"^CI/exclude-from-build.json$"
"^CI/exclude-from-build.json$",
"^README.md$",
"^CHANGELOG.md$"
]
4 changes: 2 additions & 2 deletions PINOperation.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'PINOperation'
s.version = '1.1'
s.version = '1.1.1'
s.homepage = 'https://github.com/pinterest/PINOperation'
s.summary = 'Fast, concurrency-limited task queue for iOS and OS X.'
s.authors = { 'Garrett Moon' => '[email protected]' }
s.source = { :git => 'https://github.com/pinterest/PINOperation.git', :tag => "#{s.version}" }
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.requires_arc = true
s.frameworks = 'Foundation'
s.ios.deployment_target = '5.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the following line to your `Cartfile` and run `carthage update --platform io

## Requirements

__PINOperation__ requires iOS 8.0 or OS X 10.10 and greater.
__PINOperation__ requires iOS 5.0 or OS X 10.8 and greater.

## Contact

Expand Down

0 comments on commit af6665f

Please sign in to comment.