Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 07e7a55

Browse files
v1.8.1
1 parent 857adc7 commit 07e7a55

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

angular-mocks.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* @license AngularJS v1.8.0
3-
* (c) 2010-2020 Google, Inc. http://angularjs.org
2+
* @license AngularJS v1.8.1
3+
* (c) 2010-2020 Google LLC. http://angularjs.org
44
* License: MIT
55
*/
66
(function(window, angular) {
@@ -951,7 +951,7 @@ angular.mock.TzDate.prototype = Date.prototype;
951951
* You need to require the `ngAnimateMock` module in your test suite for instance `beforeEach(module('ngAnimateMock'))`
952952
*/
953953
angular.mock.animate = angular.module('ngAnimateMock', ['ng'])
954-
.info({ angularVersion: '1.8.0' })
954+
.info({ angularVersion: '1.8.1' })
955955

956956
.config(['$provide', function($provide) {
957957

@@ -2669,7 +2669,7 @@ angular.module('ngMock', ['ng']).provider({
26692669
$provide.decorator('$rootScope', angular.mock.$RootScopeDecorator);
26702670
$provide.decorator('$controller', createControllerDecorator($compileProvider));
26712671
$provide.decorator('$httpBackend', angular.mock.$httpBackendDecorator);
2672-
}]).info({ angularVersion: '1.8.0' });
2672+
}]).info({ angularVersion: '1.8.1' });
26732673

26742674
/**
26752675
* @ngdoc module
@@ -2684,7 +2684,7 @@ angular.module('ngMock', ['ng']).provider({
26842684
*/
26852685
angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
26862686
$provide.decorator('$httpBackend', angular.mock.e2e.$httpBackendDecorator);
2687-
}]).info({ angularVersion: '1.8.0' });
2687+
}]).info({ angularVersion: '1.8.1' });
26882688

26892689
/**
26902690
* @ngdoc service

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "angular-mocks",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"license": "MIT",
55
"main": "./angular-mocks.js",
66
"ignore": [],
77
"dependencies": {
8-
"angular": "1.8.0"
8+
"angular": "1.8.1"
99
}
1010
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-mocks",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "AngularJS mocks for testing",
55
"main": "angular-mocks.js",
66
"scripts": {

0 commit comments

Comments
 (0)