Skip to content

Commit

Permalink
chore: Bump version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
masterspambot committed May 15, 2016
1 parent 14f96dd commit c542e97
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 41 deletions.
3 changes: 2 additions & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-permission",
"version": "3.0.1",
"version": "3.1.0",
"authors": [
"Rafael Vidaurre <narzerus@gmail.com> (http://www.rafaelvidaurre.com)",
"Blazej Krysiak <blazej.krysiak@gmail.com>"
Expand Down Expand Up @@ -35,6 +35,7 @@
"test",
"src",
"Gruntfile.js",
"CONTRIBUTING.md",
".jshintrc",
".gitignore",
".travis.yml"
Expand Down
12 changes: 7 additions & 5 deletions dist/angular-permission-ng.js
@@ -1,14 +1,14 @@
/**
* angular-permission-ng
* Extension module of angular-permission for access control within angular-route
* @version v3.0.1 - 2016-05-07
* @version v3.1.0 - 2016-05-15
* @link https://github.com/Narzerus/angular-permission
* @author Rafael Vidaurre <narzerus@gmail.com> (http://www.rafaelvidaurre.com), Blazej Krysiak
* <blazej.krysiak@gmail.com>
* @license MIT License, http://www.opensource.org/licenses/MIT
*/

(function () {
(function (module) {
'use strict';

/**
Expand Down Expand Up @@ -96,11 +96,13 @@
});
}

angular
var ngPermission = angular
.module('permission.ng', ['permission', 'ngRoute'])
.run(run);
.run(run).name;

}());
module.exports = ngPermission.name;

}(module || {}));


(function () {
Expand Down
12 changes: 7 additions & 5 deletions dist/angular-permission-ng.min.js

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

7 changes: 5 additions & 2 deletions dist/angular-permission-ng.min.js.map

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

11 changes: 7 additions & 4 deletions dist/angular-permission-ui.js
@@ -1,14 +1,14 @@
/**
* angular-permission-ui
* Extension module of angular-permission for access control within ui-router
* @version v3.0.1 - 2016-05-07
* @version v3.1.0 - 2016-05-15
* @link https://github.com/Narzerus/angular-permission
* @author Rafael Vidaurre <narzerus@gmail.com> (http://www.rafaelvidaurre.com), Blazej Krysiak
* <blazej.krysiak@gmail.com>
* @license MIT License, http://www.opensource.org/licenses/MIT
*/

(function () {
(function (module) {
'use strict';

/**
Expand Down Expand Up @@ -153,11 +153,14 @@
});
}

angular
var uiPermission = angular
.module('permission.ui', ['permission', 'ui.router'])
.config(config)
.run(run);
}());

module.exports = uiPermission.name;

}(module || {}));


(function () {
Expand Down
14 changes: 8 additions & 6 deletions dist/angular-permission-ui.min.js

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

6 changes: 4 additions & 2 deletions dist/angular-permission-ui.min.js.map

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

12 changes: 7 additions & 5 deletions dist/angular-permission.js
@@ -1,23 +1,25 @@
/**
* angular-permission
* Fully featured role and permission based access control for your angular applications
* @version v3.0.1 - 2016-05-07
* @version v3.1.0 - 2016-05-15
* @link https://github.com/Narzerus/angular-permission
* @author Rafael Vidaurre <narzerus@gmail.com> (http://www.rafaelvidaurre.com), Blazej Krysiak
* <blazej.krysiak@gmail.com>
* @license MIT License, http://www.opensource.org/licenses/MIT
*/

(function () {
(function (module) {
'use strict';

/**
* @namespace permission
*/

angular
.module('permission', []);
}());
var permission = angular.module('permission', []);

module.exports = permission.name;

}(module || {}));


(function () {
Expand Down
9 changes: 5 additions & 4 deletions dist/angular-permission.min.js

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

0 comments on commit c542e97

Please sign in to comment.