Skip to content

Commit ef4133c

Browse files
committed
Update version
1 parent 0fd4450 commit ef4133c

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Shopping Cart built for AngularJS",
44
"keywords": ["AngularJS", "module", "directive", "shopping cart", "e-commerce", "cart", "basket", "shopping"],
55
"authors": {"name":"Dan Shreim", "email":"[email protected]>", "homepage":"http://www.snapjay.com/"},
6-
"version": "0.0.3-rc.1",
6+
"version": "1.0.0",
77
"homepage": "http://ngcart.snapjay.com",
88
"license": "MIT",
99
"main": "dist/ngCart.js",

dist/ngCart.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ angular.module('ngCart', ['ngCart.directives'])
331331

332332
}])
333333

334-
.value('version', '0.0.3-rc.1');
334+
.value('version', '1.0.0');
335335
;'use strict';
336336

337337

@@ -426,7 +426,7 @@ angular.module('ngCart.directives', ['ngCart.fulfilment'])
426426
$scope.checkout = function () {
427427
fulfilmentProvider.setService($scope.service);
428428
fulfilmentProvider.setSettings($scope.settings);
429-
var promise = fulfilmentProvider.checkout()
429+
fulfilmentProvider.checkout()
430430
.success(function (data, status, headers, config) {
431431
$rootScope.$broadcast('ngCart:checkout_succeeded', data);
432432
})

dist/ngCart.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngCart",
33
"private": false,
4-
"version": "0.0.3-rc.1",
4+
"version": "1.0.0",
55
"description": "Really simple shopping cart for AngularJS",
66
"license": "MIT",
77
"tags": "AngularJS, directive, module, shopping cart, shopping basket",

src/ngCart.directives.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ angular.module('ngCart.directives', ['ngCart.fulfilment'])
9292
$scope.checkout = function () {
9393
fulfilmentProvider.setService($scope.service);
9494
fulfilmentProvider.setSettings($scope.settings);
95-
var promise = fulfilmentProvider.checkout()
95+
fulfilmentProvider.checkout()
9696
.success(function (data, status, headers, config) {
9797
$rootScope.$broadcast('ngCart:checkout_succeeded', data);
9898
})

src/ngCart.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,4 +331,4 @@ angular.module('ngCart', ['ngCart.directives'])
331331

332332
}])
333333

334-
.value('version', '0.0.3-rc.1');
334+
.value('version', '1.0.0');

src/ngCart_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('ngCart module', function() {
66

77
describe('value - version', function() {
88
it('should return current version', inject(function(version) {
9-
expect(version).toEqual('0.0.3-rc.1');
9+
expect(version).toEqual('1.0.0');
1010
}));
1111
});
1212

0 commit comments

Comments
 (0)