From ade8c3a2ce0baddb6e91818f2895b74acecf2ac5 Mon Sep 17 00:00:00 2001 From: Hernan Zalazar Date: Wed, 15 Jun 2016 12:58:11 -0700 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 30 +++++++++++++++++++++++++++--- android/build.gradle | 2 +- package.json | 2 +- version.js | 2 +- 4 files changed, 30 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad97a5a..4b94441 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## [0.3.0](https://github.com/auth0/react-native-lock/tree/0.3.0) (2016-06-15) +[Full Changelog](https://github.com/auth0/react-native-lock/compare/0.2.0...0.3.0) + +**Fixed** + +- User profile was returning empty `userMetadata` after authentication in iOS [\#56](https://github.com/auth0/react-native-lock/pull/56) ([hzalaz](https://github.com/hzalaz)) +- User profile was not returning `userMetadata` after authentication [\#64](https://github.com/auth0/react-native-lock/pull/64) ([hzalaz](https://github.com/hzalaz)) + +**Added** + +- Disable change password & sign up buttons [\#59](https://github.com/auth0/react-native-lock/pull/59) ([deepaksisodiya](https://github.com/deepaksisodiya)) +- Added Authentication & Users API clients from [react-native-auth0](https://github.com/auth0/react-native-auth0). These can be obtained from the `Lock` instance. [\#63](https://github.com/auth0/react-native-lock/pull/63) ([hzalaz](https://github.com/hzalaz)) + +**Breaking changes** + +Lock object no longer has `delegation(options)` or `refreshToken(options)` methods, if you need to perform these operations you can do it from the Authentication API client like this: + +```js + lock + .authenticationAPI() + .refreshToken(refreshToken) + .then(response => console.log(response)) + .catch(error => console.log(error)); +``` + +> For more info check https://github.com/auth0/react-native-auth0 + ## [0.2.0](https://github.com/auth0/react-native-lock/tree/0.2.0) (2016-05-18) [Full Changelog](https://github.com/auth0/react-native-lock/compare/0.1.0...0.2.0) @@ -76,6 +103,3 @@ [Full Changelog](https://github.com/auth0/react-native-lock/compare/0.0.1...0.0.2) ## [0.0.1](https://github.com/auth0/react-native-lock/tree/0.0.1) (2015-11-06) - - -\* *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/android/build.gradle b/android/build.gradle index 853cc7b..293ef27 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,7 +22,7 @@ android { minSdkVersion 16 targetSdkVersion 23 versionCode 1 - versionName "0.2.0" + versionName "0.3.0" ndk { abiFilters "armeabi-v7a", "x86" } diff --git a/package.json b/package.json index 4040bc1..1591247 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-lock", - "version": "0.2.0", + "version": "0.3.0", "description": "Auth0 Lock for React Native", "main": "auth0-lock.js", "scripts": { diff --git a/version.js b/version.js index d676027..aaab0c3 100644 --- a/version.js +++ b/version.js @@ -1 +1 @@ -module.exports = "0.2.0"; \ No newline at end of file +module.exports = "0.3.0"; \ No newline at end of file