Skip to content

Commit

Permalink
Merge pull request #499 from auth0/v10-prepare-release
Browse files Browse the repository at this point in the history
Prepare for v10.0.0 release
  • Loading branch information
gnandretta authored Jul 20, 2016
2 parents c216a79 + 940df03 commit 7dddf04
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## [10.0.0] - 2016-07-20

### Changed

- The `parseHash` method was removed given that now it is
automatically handled by Lock.

### Fixed

- Stopped hiding errors that are raised from event listeners.

### Added

- Handle the new variants of password policy errors during sign up.

## [10.0.0-rc.2] - 2016-07-05

### Fixed
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
[![Build status][travis-image]][travis-url]
[![License][license-image]][license-url]

# Lock Next
# Lock

[Auth0](https://auth0.com) is an authentication broker that supports social identity providers as well as enterprise identity providers such as Active Directory, LDAP, Google Apps, Salesforce.

Lock Next is an early access beta for the new [Lock](http://auth0.com/lock) release.

## Install

From CDN

```html
<!-- Latest patch release (recommended for production) -->
<script src="http://cdn.auth0.com/js/lock/10.0.0-rc.1/lock.min.js"></script>
<script src="http://cdn.auth0.com/js/lock/10.0.0/lock.min.js"></script>
```

From [bower](http://bower.io)

```sh
bower install auth0-lock#10.0.0-rc.1
bower install auth0-lock
```

```html
Expand All @@ -29,7 +27,7 @@ bower install auth0-lock#10.0.0-rc.1
From [npm](https://npmjs.org)

```sh
npm install auth0-lock@10.0.0-rc.1
npm install auth0-lock
```

After installing the `auth0-lock` module, you'll need bundle it up along with all of its dependencies. We have examples for [browserify](examples/bundling/browserify/) and [webpack](examples/bundling/webpack/).
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-lock",
"version": "10.0.0-rc.2",
"version": "10.0.0",
"main": "build/lock.js",
"ignore": [
"lib-cov",
Expand Down
2 changes: 1 addition & 1 deletion examples/bundling/browserify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"dependencies": {
"auth0-lock": "10.0.0-rc.2"
"auth0-lock": "10.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
Expand Down
2 changes: 1 addition & 1 deletion examples/bundling/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"auth0-lock": "10.0.0-rc.2"
"auth0-lock": "10.0.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
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": "auth0-lock",
"version": "10.0.0-rc.2",
"version": "10.0.0",
"description": "Auth0 Lock",
"author": "Auth0 <[email protected]> (http://auth0.com)",
"license": "MIT",
Expand Down

0 comments on commit 7dddf04

Please sign in to comment.