Skip to content

Commit

Permalink
tag 2.0.2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
amkirwan committed Oct 10, 2016
1 parent 6d9eee8 commit 77b0ae7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# Changelog Ember-OAuth2

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

-- add setProvider method
-- change init to not take providerId

## 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]

Expand All @@ -14,10 +21,12 @@
-- Update project README



## v1.1.0
-- Add verifyToken method to handle mitigation of the confused deputy
-- fix bug with checking of state


## v1.0.1
-- Update getState function to not take a param argument and use the configure statePrefix to find the state from localStorage.
-- This makes getState and getToken perform the same way and avoids confusion with the api
Expand Down Expand Up @@ -98,3 +107,4 @@
- [8de0dc3](https://github.com/amkirwan/ember-oauth2/commit/8de0dc3f6cb2d93a0a16752e9306b18e998a906b) adjusted readme.md
- [c4e5829](https://github.com/amkirwan/ember-oauth2/commit/c4e58292a43190fd6e9b7af7d1b3bde900e7776f) travis should run tests using grunt task
- [17eb7f7](https://github.com/amkirwan/ember-oauth2/commit/17eb7f71a275c94b3053d334f77004fbf6ef03b4) fixed ember-oauth2.png image

3 changes: 2 additions & 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.1-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.1-beta)**
Current Version: **[2.0.2-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.2-beta)**

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

Expand Down Expand Up @@ -267,3 +267,4 @@ $ yuidoc .




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.1-beta
* @version 2.0.2-beta
*
* @module ember-oauth2
* @class ember-oauth2
*/
export default Ember.Service.extend(Ember.Evented, {
VERSION: '2.0.1-beta',
VERSION: '2.0.2-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.1-beta",
"version": "2.0.2-beta",
"homepage": "https://github.com/amkirwan/ember-oauth2",
"authors": [
"Anthony Kirwan <[email protected]>"
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": "ember-oauth2",
"version": "2.0.1-beta",
"version": "2.0.2-beta",
"description": "OAuth2 library for Emberjs that stores tokens in the browsers localStorage",
"homepage": "https://github.com/amkirwan/ember-ouath2",
"directories": {
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.1-beta",
"version": "2.0.2-beta",
"url": "https://github.com/amkirwan/ember-oauth2",
"options": {
"exclude": "node_modules,bower_components,scripts,tmp,vendor",
Expand Down

0 comments on commit 77b0ae7

Please sign in to comment.