Skip to content

Commit

Permalink
chore: Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
masterspambot committed Mar 2, 2016
1 parent 8e35050 commit 29c1514
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 12 deletions.
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

10 changes: 7 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-permission",
"version": "2.1.0",
"version": "2.1.1",
"authors": ["Rafael Vidaurre <narzerus@gmail.com>"],
"contributors": ["Blazej Krysiak <blazej.krysiak@gmail.com>"],
"description": "Route permission and access control as simple as it can get",
Expand All @@ -17,9 +17,13 @@
"**/.*",
"node_modules",
"bower_components",
"config",
"test",
"tests",
"src"
"src",
"Gruntfile.js",
".jshintrc",
".gitignore",
".travis.yml"
],
"devDependencies": {
"angular-mocks": "*"
Expand Down
3 changes: 2 additions & 1 deletion config/grunt/concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ module.exports = function () {

return {
options: {
banner: '<%= meta.banner %>\n'
banner: '<%= meta.banner %>\n',
separator: '\n\n'
},
dist: {
files: {
Expand Down
10 changes: 9 additions & 1 deletion dist/angular-permission.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* angular-permission
* Route permission and access control as simple as it can get
* @version v2.1.0 - 2016-03-01
* @version v2.1.1 - 2016-03-02
* @link http://www.rafaelvidaurre.com
* @author Rafael Vidaurre <narzerus@gmail.com>
* @license MIT License, http://www.opensource.org/licenses/MIT
Expand Down Expand Up @@ -156,6 +156,7 @@
}]);
}());


(function () {
'use strict';

Expand Down Expand Up @@ -293,6 +294,7 @@
return PermissionMap;
}]);
}());

(function () {
'use strict';

Expand Down Expand Up @@ -366,6 +368,7 @@
return Permission;
}]);
}());

(function () {
'use strict';

Expand Down Expand Up @@ -471,6 +474,7 @@
return Role;
}]);
}());

(function () {
'use strict';

Expand Down Expand Up @@ -558,6 +562,7 @@
}
}]);
}());

(function () {
'use strict';

Expand Down Expand Up @@ -629,6 +634,7 @@
}
}]);
}());

(function () {
'use strict';

Expand All @@ -645,6 +651,7 @@
.directive('permission', ['$log', 'Authorization', 'PermissionMap', function ($log, Authorization, PermissionMap) {
return {
restrict: 'A',
scope: true,
bindToController: {
only: '=',
except: '='
Expand Down Expand Up @@ -677,6 +684,7 @@
}]);
}());


(function () {
'use strict';

Expand Down
4 changes: 2 additions & 2 deletions dist/angular-permission.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 29c1514

Please sign in to comment.