Skip to content

Commit

Permalink
update version to 2.0.1-beta
Browse files Browse the repository at this point in the history
add full changelog information
  • Loading branch information
amkirwan committed Oct 5, 2016
1 parent 7fe61e8 commit 0e213f2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# Changelog Ember-OAuth2

## v2.0.1-beta
(Full Changelog)[https://github.com/amkirwan/ember-oauth2/compare/v2.0.0-beta...v2.0.1-beta]

-- Update NPM author info


## v2.0.0-beta
(Full Changelog)[https://github.com/amkirwan/ember-oauth2/compare/v1.1.0...v2.0.0-beta]

-- Converted to EmberAddon and turned EmberOAuth2 into a service
-- Updated testing to use Ember-Qunit
-- Update project README


## v1.1.0
-- Add verifyToken method to handle mitigation of the confused deputy
-- fix bug with checking of state
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ JavaScript library for using OAuth 2.0 Implicit Grant flow (Client-Side Flow) or

This creates an OAuth 2.0 Ember object class for handling authentication with OAuth 2.0 providers.

Current Version: **[2.0.0-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.0-beta)**
Current Version: **[2.0.1-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.1-beta)**

The EmberCli addon [EmberTokenAuth](https://github.com/amkirwan/ember-token-auth) demonstrates how to use Ember-OAuth2 library for authentication.

Expand Down
4 changes: 2 additions & 2 deletions addon/services/ember-oauth2.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import Ember from 'ember';
* @overview OAuth2 addon for Emberjs that stores tokens in the browsers localStorage
* @license Licensed under MIT license
* See https://raw.github.com/amkirwan/ember-oauth2/master/LICENSE
* @version 2.0.0
* @version 2.0.1-beta
*
* @module ember-oauth2
* @class ember-oauth2
*/
export default Ember.Service.extend(Ember.Evented, {
VERSION: '2.0.0',
VERSION: '2.0.1-beta',
/**
* initialize with the providerId to find in
* EmberENV['ember-oauth2'] config
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": "ember-oauth2",
"version": "2.0.0-beta",
"version": "2.0.1-beta",
"homepage": "https://github.com/amkirwan/ember-oauth2",
"authors": [
"Anthony Kirwan <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion yuidoc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Ember.OAuth2",
"description": "OAuth2 library for Emberjs that stores tokens in the browsers localStorage",
"version": "2.0.0-beta",
"version": "2.0.1-beta",
"url": "https://github.com/amkirwan/ember-oauth2",
"options": {
"exclude": "node_modules,bower_components,scripts,tmp,vendor",
Expand Down

0 comments on commit 0e213f2

Please sign in to comment.