diff --git a/CHANGELOG.md b/CHANGELOG.md
index ccd39f32b..b3cb862b6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## [10.1.0] - 2016-08-09
+
+### Added
+
+- Add `de` translation (#546)
+
## [10.0.2] - 2016-08-05
### Fixed
@@ -138,106 +144,3 @@
## [10.0.0-beta.1] - 2016-03-23
First preview release, see [https://auth0.com/docs/libraries/lock/v10](https://auth0.com/docs/libraries/lock/v10) for details.
-
-## [2.2.1] - 2016-01-18
-
-### Changed
-
-- Some font alternatives are provided instead of defaulting to sans-serif immediately on systems without Avenir.
-
-### Fixed
-
-- Pass `authParams` option in a social login.
-
-## [2.2.0] - 2016-01-14
-
-### Changed
-
-- Make it easy to bundle the module with [browserify](https://browserify.org) or [webpack](https://webpack.github.io/). Custom transforms or loaders are no longer needed. **Please review your bundling process when upgrading to this version**.
-
-## [2.1.1] - 2016-01-07
-
-### Fixed
-
-- Namespace style normalization rules inside .auth0-lock.
-
-## [2.1.0] - 2016-01-06
-
-### Changed
-
-- Allow spaces and hyphens in phone numbers.
-- Upgrade to React v0.14.5.
-- Upgrade to Auth0.js v6.8.0.
-
-### Added
-
-- Add a back button when selecting a country code.
-
-### Fixed
-
-- Force all characters to lower-case when creating the Gravatar's md5 hash.
-- Fix resend magic link button in applications using [page.js](https://github.com/visionmedia/page.js).
-
-## [2.0.1] - 2015-12-04
-
-### Fixed
-
-- Ensure Facebook page looks fine in the popup.
-
-## [2.0.0] - 2015-12-03
-
-### Changed
-
-- The Lock can now be reopened after it is closed.
-- When a `defaultLocation` option is not provided the country code will be derived from the user's geo-location. If it can't be obtained before the Lock is shown, it will default to _+1 (US)_.
-- Some dictionary keys, used for confirmation screens have been renamed:
- - `emailcode.confirmation` was changed to `emailcode.signedIn`.
- - `magiclink.confirmation` was changed to `magiclink.emailSent`.
- - `sms.confirmation` was changed to `sms.signedIn`.
-- Upgraded to React v0.14.3. Thanks @joelburget.
-- Upgraded to Auth0.js 6.7.7.
-
-### Added
-
-- A warning will be shown when a `scope="openid profile"` is used. Can be avoided with the `disableWarnings` option.
-- Now the Lock allows to authenticate with social providers by calling the `social` method. The behavior can be controlled with the new `connections` and `socialBigButtons` options.
-- It is possible to mix social authentication with all the previously provided passwordless alternatives by calling `socialOrMagiclink`, `socialOrEmailcode` or `socialOrSms`.
-- A `destroy` method has been added since calling `close` no longer frees the Lock's resources.
-
-### Fixed
-
-- Some styling tweaks in the Lock's header.
-- Footer text was displayed incorrectly in small screens.
-
-## [1.0.2] - 2015-09-30
-
-### Changed
-
-- Make phone number and verification code inputs bring up a numeric keyboard on mobile devices.
-
-### Fixed
-
-- Debounce Gravatar requests.
-- Use always the same height for the header icon.
-- Ensure the title always shows up always in the same place.
-- Fix close and back buttons on some old IE versions, they weren't responding to the click event.
-- Ensure the Lock is displayed correctly in pages with z-ordered elements (as long as their values are less than 10.000.00).
-- Use colors taken from the Gravatar for the header background.
-
-## [1.0.1] - 2015-09-30
-
-### Added
-
-- Specific error message for invalid phone numbers.
-
-### Fixed
-
-- Playground styling.
-
-## [1.0.0] - 2015-09-30
-
-- First public release.
-
-## [0.9.0] - 2015-09-30
-
-- First public pre-release.
diff --git a/README.md b/README.md
index 1de13fcd5..bb8a3fae3 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ From CDN
```html
-
+
```
From [bower](http://bower.io)
diff --git a/bower.json b/bower.json
index 5d137fd30..88a2572af 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
{
"name": "auth0-lock",
- "version": "10.0.2",
+ "version": "10.1.0",
"main": "build/lock.js",
"ignore": [
"lib-cov",
diff --git a/examples/bundling/browserify/package.json b/examples/bundling/browserify/package.json
index 331d86423..dfefc652b 100644
--- a/examples/bundling/browserify/package.json
+++ b/examples/bundling/browserify/package.json
@@ -15,7 +15,7 @@
]
},
"dependencies": {
- "auth0-lock": "^10.0.0"
+ "auth0-lock": "^10.1.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
diff --git a/examples/bundling/webpack/package.json b/examples/bundling/webpack/package.json
index 0a4123292..0cc8a58c4 100644
--- a/examples/bundling/webpack/package.json
+++ b/examples/bundling/webpack/package.json
@@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
- "auth0-lock": "^10.0.0"
+ "auth0-lock": "^10.1.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
diff --git a/package.json b/package.json
index 813440e8b..166a70b9b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "auth0-lock",
- "version": "10.0.2",
+ "version": "10.1.0",
"description": "Auth0 Lock",
"author": "Auth0 (http://auth0.com)",
"license": "MIT",