diff --git a/CHANGELOG.md b/CHANGELOG.md index f802dac..0bf5edb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog -## [2.0.3](https://github.com/theadam/SwiftClient/tree/2.0.3) (2016-04-27) +## [3.0.0](https://github.com/theadam/SwiftClient/tree/3.0.0) (2017-04-01) +[Full Changelog](https://github.com/theadam/SwiftClient/compare/2.0.3...3.0.0) + +**Closed issues:** + +- PodSpec Broken? [\#20](https://github.com/theadam/SwiftClient/issues/20) + +**Merged pull requests:** + +- Migrate to Swift 3 [\#21](https://github.com/theadam/SwiftClient/pull/21) ([diogoguimaraes](https://github.com/diogoguimaraes)) + +## [2.0.3](https://github.com/theadam/SwiftClient/tree/2.0.3) (2016-04-26) [Full Changelog](https://github.com/theadam/SwiftClient/compare/2.0.2...2.0.3) **Closed issues:** @@ -54,3 +65,7 @@ - Add podspec [\#4](https://github.com/theadam/SwiftClient/pull/4) ([nunofgs](https://github.com/nunofgs)) - Fix compiler errors [\#3](https://github.com/theadam/SwiftClient/pull/3) ([nunofgs](https://github.com/nunofgs)) + + + +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file diff --git a/README.md b/README.md index df5c684..234cb1b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ $ brew install carthage To integrate `SwiftClient` into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "theadam/SwiftClient" ~> 2.0.3 +github "theadam/SwiftClient" ~> 3.0.0 ``` Run `carthage update` to build the framework and drag the built `SwiftClient.framework` into your Xcode project. @@ -34,7 +34,7 @@ platform :ios, '9.0' use_frameworks! -pod 'SwiftClient', '~> 2.0' +pod 'SwiftClient', '~> 3.0.0' ``` Then, run the following command: diff --git a/SwiftClient.podspec b/SwiftClient.podspec index aaad428..a5f2a6b 100644 --- a/SwiftClient.podspec +++ b/SwiftClient.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftClient' - s.version = '2.0.3' + s.version = '3.0.0' s.license = 'MIT' s.summary = 'A simple HTTP client library written in Swift 2' s.homepage = 'https://github.com/theadam/SwiftClient'