Skip to content
This repository has been archived by the owner on Oct 14, 2019. It is now read-only.

Commit

Permalink
fix(Dependencies): allow range of ui.bootstrap versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Feb 9, 2016
1 parent e7bbafc commit a6dfb51
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
12 changes: 0 additions & 12 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ module.exports = function(grunt) {
browsers: ['Chrome']
}
},
bump: {
options: {
files: ['bower.json', 'package.json'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['bower.json', 'package.json'],
}
},
git_changelog: {
default: {
options: {
Expand All @@ -39,13 +31,9 @@ module.exports = function(grunt) {
}
}
}



});

grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('git-changelog');
};
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ Build a new version:
gulp build
```

Commit and update version:
Update version in bower.json and package.json and commit:

```sh
grunt bump:patch
git commit -a -m "Release 5.0.8"
```

Tag, sign and push:

```sh
git tag -s v5.0.8
git tag -s v5.0.8 -m "v5.0.8"
git push --tags
```
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dist/css/bc-phone-number.css",
"dist/js/bc-phone-number.js"
],
"version": "5.0.8",
"version": "5.0.9",
"authors": [
"Abdullah Alansari <[email protected]>",
"Justin Tormey <[email protected]>",
Expand Down Expand Up @@ -41,7 +41,7 @@
"bootstrap": "~3.3.5",
"bc-css-flags": "~3.0.0",
"bc-countries": "~2.0.0",
"angular-bootstrap": "~1.1.*"
"angular-bootstrap": "0.14.0 - 1.1.*"
},
"devDependencies": {
"angular-mocks": "~1.4.7"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bc-phone-number",
"version": "5.0.8",
"version": "5.0.9",
"description": "An AngularJS international phone input directive",
"main": "src/bc-phone-number.js",
"scripts": {
Expand Down Expand Up @@ -36,7 +36,6 @@
"git-changelog": "^0.1.8",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-bump": "^0.6.0",
"grunt-karma": "^0.12.1",
"gulp": "^3.9.0",
"gulp-angular-templatecache": "^1.7.0",
Expand Down

0 comments on commit a6dfb51

Please sign in to comment.