Skip to content

Commit 9582dd3

Browse files
authored
Merge pull request #43 from amkirwan/2-0-5-beta-r
chore: bump to v2.0.5-beta
2 parents 688edc4 + c009fe0 commit 9582dd3

File tree

7 files changed

+9140
-2252
lines changed

7 files changed

+9140
-2252
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog Ember-OAuth2
22

3+
## v2.0.5-beta
4+
(Full Changelog)[https://github.com/amkirwan/ember-oauth2/compare/v2.0.4-beta...v2.0.5-beta]
5+
- Update ember-cli
6+
- Use ES6
7+
- Update Tests
8+
- cleanup
9+
310
## v2.0.4-beta
411
(Full Changelog)[https://github.com/amkirwan/ember-oauth2/compare/v2.0.3-beta...v2.0.4-beta]
512
- Move ember-cli-babel to dev dependencies

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
[![Build Status](https://travis-ci.org/amkirwan/ember-oauth2.png)](https://travis-ci.org/amkirwan/ember-oauth2)
2-
1+
[![Build Status](https://travis-ci.org/amkirwan/ember-oauth2.png)](https://travis-ci.org/amkirwan/ember-oauth2)
32

43
ember-oauth2
54
============
@@ -8,7 +7,7 @@ JavaScript library for using OAuth 2.0 Implicit Grant flow (Client-Side Flow) or
87

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

11-
Current Version: **[2.0.4-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.4-beta)**
10+
Current Version: **[2.0.5-beta](https://github.com/amkirwan/ember-oauth2/releases/tag/v2.0.5-beta)**
1211

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

addon/services/ember-oauth2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import { warn } from '@ember/debug';
77
* @overview OAuth2 addon for Emberjs that stores tokens in the browsers localStorage
88
* @license Licensed under MIT license
99
* See https://raw.github.com/amkirwan/ember-oauth2/master/LICENSE
10-
* @version 2.0.4-beta
10+
* @version 2.0.5-beta
1111
*
1212
* @module ember-oauth2
1313
* @class ember-oauth2
1414
*/
1515
export default Service.extend(Evented, {
16-
VERSION: '2.0.4-beta',
16+
VERSION: '2.0.5-beta',
1717
/**
1818
* initialize with the providerId to find in
1919
* EmberENV['ember-oauth2'] config

0 commit comments

Comments
 (0)