diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9b3b9..e70bb67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [0.5.0](https://github.com/auth0/Guardian.swift/tree/0.5.0) (2018-07-19) +[Full Changelog](https://github.com/auth0/Guardian.swift/compare/0.4.0...0.5.0) +**Closed issues** +- Private constants as default arguments - Swift 4 Support [\#61](https://github.com/auth0/Guardian.swift/issues/61) + +**Changed** +- Update to compile with Swift 4 [\#63](https://github.com/auth0/Guardian.swift/pull/63) ([hzalaz](https://github.com/hzalaz)) + +**Deprecated** +- Deprecate iOS 9 or older notification code [\#64](https://github.com/auth0/Guardian.swift/pull/64) ([hzalaz](https://github.com/hzalaz)) + ## [0.4.0](https://github.com/auth0/Guardian.swift/tree/0.4.0) (2018-06-08) [Full Changelog](https://github.com/auth0/Guardian.swift/compare/0.3.1...0.4.0) diff --git a/Guardian/Info.plist b/Guardian/Info.plist index c941094..288c341 100644 --- a/Guardian/Info.plist +++ b/Guardian/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.4.0 + 0.5.0 CFBundleSignature ???? CFBundleVersion diff --git a/GuardianApp/Info.plist b/GuardianApp/Info.plist index c9a4c0e..1e37175 100644 --- a/GuardianApp/Info.plist +++ b/GuardianApp/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.0 + 0.5.0 CFBundleSignature ???? CFBundleVersion diff --git a/GuardianTests/Info.plist b/GuardianTests/Info.plist index e82cdb5..96201fb 100644 --- a/GuardianTests/Info.plist +++ b/GuardianTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 0.4.0 + 0.5.0 CFBundleSignature ???? CFBundleVersion diff --git a/README.md b/README.md index cc01872..274ea12 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Guardian.swift is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod 'Guardian', '~> 0.4.0' +pod 'Guardian', '~> 0.5.0' ``` #### Carthage @@ -44,7 +44,7 @@ pod 'Guardian', '~> 0.4.0' In your Cartfile add this line ``` -github "auth0/Guardian.swift" ~> 0.4.0 +github "auth0/Guardian.swift" ~> 0.5.0 ``` ## Usage