diff --git a/CHANGELOG.md b/CHANGELOG.md index c5ab81f..4d53095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [2.3.0](https://github.com/auth0/JWTDecode.swift/tree/2.3.0) (2019-05-06) +[Full Changelog](https://github.com/auth0/JWTDecode.swift/compare/2.2.0...2.3.0) + +**Added** +- Added Swift 5 / Xcode 10.2 support [\#88](https://github.com/auth0/JWTDecode.swift/pull/88) ([cocojoe](https://github.com/cocojoe)) + ## [2.2.0](https://github.com/auth0/JWTDecode.swift/tree/2.2.0) (2018-12-17) [Full Changelog](https://github.com/auth0/JWTDecode.swift/compare/2.1.1...2.2.0) diff --git a/JWTDecode/Info.plist b/JWTDecode/Info.plist index d1a6270..61bc243 100644 --- a/JWTDecode/Info.plist +++ b/JWTDecode/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.2.0 + 2.3.0 CFBundleSignature ???? CFBundleVersion diff --git a/JWTDecodeTests/Info.plist b/JWTDecodeTests/Info.plist index db502d0..8d62b1a 100644 --- a/JWTDecodeTests/Info.plist +++ b/JWTDecodeTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 2.2.0 + 2.3.0 CFBundleSignature ???? CFBundleVersion diff --git a/README.md b/README.md index 221306b..e0a6fe1 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This library will help you check [JWT](http://jwt.io/) payload If you are using Carthage, add the following lines to your `Cartfile`: ```ruby -github "auth0/JWTDecode.swift" ~> 2.2 +github "auth0/JWTDecode.swift" ~> 2.3 ``` Then run `carthage bootstrap`. @@ -38,7 +38,7 @@ If you are using [Cocoapods](https://cocoapods.org/), add these lines to your `P ```ruby use_frameworks! -pod 'JWTDecode', '~> 2.2' +pod 'JWTDecode', '~> 2.3' ``` Then, run `pod install`.