Skip to content

Commit

Permalink
Add support for higher dependencies versions
Browse files Browse the repository at this point in the history
Previously, the dependencies versions were locked to a single version. This
commit adds caret operator in compliance with semver.
  • Loading branch information
João Granado committed Jan 19, 2015
1 parent 1e62aad commit 328adba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-oauth2",
"version": "1.0.1",
"version": "1.0.2",
"description": "AngularJS OAuth2",
"main": "./dist/angular-oauth2.js",
"authors": [
Expand All @@ -23,8 +23,8 @@
"test"
],
"dependencies": {
"angular": "1.3.9",
"angular-cookie": "4.0.6",
"query-string": "1.0.0"
"angular": "^1.3.9",
"angular-cookie": "^4.0.6",
"query-string": "^1.0.0"
}
}
2 changes: 1 addition & 1 deletion dist/angular-oauth2.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* angular-oauth2 - Angular OAuth2
* @version v1.0.1
* @version v1.0.2
* @link https://github.com/seegno/angular-oauth2
* @license MIT
*/
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": "angular-oauth2",
"version": "1.0.1",
"version": "1.0.2",
"description": "Angular OAuth2",
"main": "./dist/angular-oauth2.js",
"scripts": {
Expand Down

0 comments on commit 328adba

Please sign in to comment.