Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hzalaz committed Jun 15, 2016
1 parent 212cb04 commit ade8c3a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
30 changes: 27 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

This comment has been minimized.

Copy link
@chirag04

chirag04 Jun 19, 2016

Contributor

any reason for not doing a major version bump here?

.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)

Expand Down Expand Up @@ -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)*
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "0.2.0"
versionName "0.3.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "0.2.0";
module.exports = "0.3.0";

0 comments on commit ade8c3a

Please sign in to comment.