diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7493ba40..a51b56cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log
+## [v1.0.1](https://github.com/auth0/react-native-auth0/tree/v1.0.1) (2017-06-15)
+[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v1.0.0...v1.0.1)
+
+**Fixed**
+- Bundle identifier must be made lowercase [\#38](https://github.com/auth0/react-native-auth0/pull/38) ([trondwernerhansen](https://github.com/trondwernerhansen))
+
## [v1.0.0](https://github.com/auth0/auth0.js/tree/v1.0.0) (2017-06-14)
[Full Changelog](https://github.com/auth0/auth0.js/tree/v1.0.0)
diff --git a/docs/Auth.html b/docs/Auth.html
index ef1fb578..37288c53 100644
--- a/docs/Auth.html
+++ b/docs/Auth.html
@@ -2336,7 +2336,7 @@
Returns:
diff --git a/docs/Auth0.html b/docs/Auth0.html
index f3237c3c..fcd55b9d 100644
--- a/docs/Auth0.html
+++ b/docs/Auth0.html
@@ -172,7 +172,7 @@ Classes
diff --git a/docs/Auth0.module.exports.html b/docs/Auth0.module.exports.html
index 3a70eab3..94b689bb 100644
--- a/docs/Auth0.module.exports.html
+++ b/docs/Auth0.module.exports.html
@@ -296,7 +296,7 @@ Parameters:
diff --git a/docs/Users.html b/docs/Users.html
index b0677c1a..3cd70e30 100644
--- a/docs/Users.html
+++ b/docs/Users.html
@@ -630,7 +630,7 @@ Returns:
diff --git a/docs/WebAuth.html b/docs/WebAuth.html
index 3673454f..715db344 100644
--- a/docs/WebAuth.html
+++ b/docs/WebAuth.html
@@ -513,7 +513,7 @@ Returns:
diff --git a/docs/auth_index.js.html b/docs/auth_index.js.html
index c8dde0a2..32f5a993 100644
--- a/docs/auth_index.js.html
+++ b/docs/auth_index.js.html
@@ -307,7 +307,7 @@ auth/index.js
diff --git a/docs/global.html b/docs/global.html
index 9df1e56b..f2cde4d3 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -285,7 +285,7 @@ Returns:
diff --git a/docs/index.html b/docs/index.html
index 7cbd0f70..02590985 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -54,9 +54,6 @@
React Native toolkit for Auth0 API
-
-This library is currently in Beta and it's missing some Authentication API methods. Feel free to contribute
-
Requirements
React Native 0.26+
Installation
Install react-native-auth0
using npm
npm install react-native-auth0 --save
Or via yarn
@@ -182,7 +179,7 @@ License
This project is licensed under the MIT license. See the
diff --git a/docs/index.js.html b/docs/index.js.html
index 07541726..e51c866c 100644
--- a/docs/index.js.html
+++ b/docs/index.js.html
@@ -88,7 +88,7 @@ index.js
diff --git a/docs/management_users.js.html b/docs/management_users.js.html
index 621d1b3a..b03312e7 100644
--- a/docs/management_users.js.html
+++ b/docs/management_users.js.html
@@ -134,7 +134,7 @@ management/users.js
diff --git a/docs/webauth_index.js.html b/docs/webauth_index.js.html
index 898dc202..f95eddb1 100644
--- a/docs/webauth_index.js.html
+++ b/docs/webauth_index.js.html
@@ -91,7 +91,7 @@ webauth/index.js
.newTransaction()
.then(({state, verifier, ...defaults}) => {
const bundleIdentifier = A0Auth0.bundleIdentifier;
- const redirectUri = `${bundleIdentifier}://${domain}/${Platform.OS}/${bundleIdentifier}/callback`
+ const redirectUri = `${bundleIdentifier.toLowerCase()}://${domain}/${Platform.OS}/${bundleIdentifier}/callback`
const expectedState = options.state || state;
let query = {
...options,
@@ -148,7 +148,7 @@ webauth/index.js
diff --git a/networking/telemetry.js b/networking/telemetry.js
index 016255c2..9464bf40 100644
--- a/networking/telemetry.js
+++ b/networking/telemetry.js
@@ -1,5 +1,5 @@
-// Generated file by hernan on Wed Jun 14 2017 21:55:42 GMT-0300 (-03);
+// Generated file by hernan on Thu Jun 15 2017 01:49:46 GMT-0300 (-03);
module.exports = {
"name": "react-native-auth0",
- "version": "1.0.0"
+ "version": "1.0.1"
};
\ No newline at end of file
diff --git a/package.json b/package.json
index d9979597..7c8c1974 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "react-native-auth0",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "React Native toolkit for Auth0 API",
"main": "index.js",
"scripts": {