diff --git a/Auth0/Info.plist b/Auth0/Info.plist index faf8796f5..8068b2462 100644 --- a/Auth0/Info.plist +++ b/Auth0/Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.27.1 + 1.28.0 CFBundleSignature ???? CFBundleVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index ddcccecb5..601dcd2a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Change Log + +## [1.28.0](https://github.com/auth0/Lock.iOS-OSX/tree/1.28.0) (2016-12-07) +[Full Changelog](https://github.com/auth0/Lock.iOS-OSX/compare/1.27.1...1.28.0) + +**Changed** +- Handle a0.mfa_registration_required when MFA needs enroll [\#352](https://github.com/auth0/Lock.iOS-OSX/pull/352) ([cocojoe](https://github.com/cocojoe)) +- Update A0EmailValidator.m [\#344](https://github.com/auth0/Lock.iOS-OSX/pull/344) ([f2m2rd](https://github.com/f2m2rd)) + ## [1.27.1](https://github.com/auth0/Lock.iOS-OSX/tree/1.27.1) (2016-10-06) [Full Changelog](https://github.com/auth0/Lock.iOS-OSX/compare/1.27.0...1.27.1) diff --git a/Lock/Info.plist b/Lock/Info.plist index d5c3f1614..ce0a2a5ff 100644 --- a/Lock/Info.plist +++ b/Lock/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.27.1 + 1.28.0 CFBundleSignature ???? CFBundleVersion diff --git a/LockTests/Info.plist b/LockTests/Info.plist index 036d5be8a..bc9e41fb5 100644 --- a/LockTests/Info.plist +++ b/LockTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.27.1 + 1.28.0 CFBundleSignature ???? CFBundleVersion diff --git a/MyLock/Info.plist b/MyLock/Info.plist index af206f9ca..06badd7e0 100644 --- a/MyLock/Info.plist +++ b/MyLock/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.27.1 + 1.28.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/README.md b/README.md index c7121dae4..f70f9d20e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ You'll need iOS 7 or later, if you need to use it with an older version please u The Lock is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod "Lock", "~> 1.27" +pod "Lock", "~> 1.28" ``` ## Before Getting Started @@ -214,7 +214,7 @@ lock.registerAuthenticators([safari]) Add the following line to your Podfile: ```ruby -pod "Lock/TouchID", "~> 1.27" +pod "Lock/TouchID", "~> 1.28" ``` First instantiate `A0TouchIDLockViewController` and register the authentication callback that will receive the authenticated user's credentials. Finally present it to the user: @@ -255,7 +255,7 @@ And you'll see TouchID login screen Add the following line to your Podfile: ```ruby -pod "Lock/SMS", "~> 1.27" +pod "Lock/SMS", "~> 1.28" ``` First instantiate `A0SMSLockViewController` and register the authentication callback that will receive the authenticated user's credentials. @@ -298,7 +298,7 @@ And you'll see SMS login screen Add the following line to your Podfile: ```ruby -pod "Lock/Email", "~> 1.27" +pod "Lock/Email", "~> 1.28" ``` First instantiate `A0EmailLockViewController` and register the authentication callback that will receive the authenticated user's credentials.