diff --git a/App/Info.plist b/App/Info.plist index 341f5d0f..43478a2d 100644 --- a/App/Info.plist +++ b/App/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/Auth0/Info-tvOS.plist b/Auth0/Info-tvOS.plist index afe21b45..5fbe97ca 100644 --- a/Auth0/Info-tvOS.plist +++ b/Auth0/Info-tvOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleSignature ???? CFBundleVersion diff --git a/Auth0/Info.plist b/Auth0/Info.plist index 25a46c20..82e73411 100644 --- a/Auth0/Info.plist +++ b/Auth0/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleSignature ???? CFBundleVersion diff --git a/Auth0Tests/Info.plist b/Auth0Tests/Info.plist index 46edd066..58e642a5 100644 --- a/Auth0Tests/Info.plist +++ b/Auth0Tests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleSignature ???? CFBundleVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index 0567c5ad..cd09b17e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [1.16.0](https://github.com/auth0/Auth0.swift/tree/1.16.0) (2019-07-17) +[Full Changelog](https://github.com/auth0/Auth0.swift/compare/1.15.0...1.16.0) + +**Added** +- Added support for root attributes when creating a new user [\#287](https://github.com/auth0/Auth0.swift/pull/287) ([cocojoe](https://github.com/cocojoe)) + +**Fixed** +- Fix: Remove force unwrap in AuthSession handler [\#286](https://github.com/auth0/Auth0.swift/pull/286) ([cocojoe](https://github.com/cocojoe)) +- Fix Dismiss AS/SF authentication sessions upon deep-link callback [\#281](https://github.com/auth0/Auth0.swift/pull/281) ([cysp](https://github.com/cysp)) +- Update app configuration error message for PKCE [\#280](https://github.com/auth0/Auth0.swift/pull/280) ([lbalmaceda](https://github.com/lbalmaceda)) + ## [1.15.0](https://github.com/auth0/Auth0.swift/tree/1.15.0) (2019-04-24) [Full Changelog](https://github.com/auth0/Auth0.swift/compare/1.14.2...1.15.0) diff --git a/OAuth2Mac/Info.plist b/OAuth2Mac/Info.plist index 91b26de0..230b70b1 100644 --- a/OAuth2Mac/Info.plist +++ b/OAuth2Mac/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleVersion 1 LSMinimumSystemVersion diff --git a/OAuth2TV/Info.plist b/OAuth2TV/Info.plist index 50078253..501c271d 100644 --- a/OAuth2TV/Info.plist +++ b/OAuth2TV/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.15.0 + 1.16.0 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/README.md b/README.md index 5e8c882f..fac53f48 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Swift toolkit that lets you communicate efficiently with many of the [Auth0 API] If you are using Carthage, add the following lines to your `Cartfile`: ```ruby -github "auth0/Auth0.swift" ~> 1.15 +github "auth0/Auth0.swift" ~> 1.16 ``` Then run `carthage bootstrap`. @@ -36,7 +36,7 @@ If you are using [Cocoapods](https://cocoapods.org/), add these lines to your `P ```ruby use_frameworks! -pod 'Auth0', '~> 1.15' +pod 'Auth0', '~> 1.16' ``` Then run `pod install`.