From 49c7f9802c6d7e9347c73ffe018c36b750342cb1 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 18 Dec 2013 18:19:52 +0000 Subject: [PATCH] fix(deps): hard-pin angular 1.2.5 Since AngularJS now does regular pre-releases and we don't want to pick up unstable builds, we should pin the latest stable version instead of relying on the tilde specifier. --- templates/common/_bower.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/common/_bower.json b/templates/common/_bower.json index ae8068a29..48cf85667 100644 --- a/templates/common/_bower.json +++ b/templates/common/_bower.json @@ -2,19 +2,19 @@ "name": "<%= _.slugify(_.humanize(appname)) %>", "version": "0.0.0", "dependencies": { - "angular": "~1.2.5", + "angular": "1.2.5", "json3": "~3.2.6", "es5-shim": "~2.1.0"<% if (bootstrap) { %>, "jquery": "~1.10.2"<% if (compassBootstrap) { %>, "sass-bootstrap": "~3.0.2"<% } else { %>, "bootstrap": "~3.0.3"<% } } %><% if (resourceModule) { %>, - "angular-resource": "~1.2.5"<% } %><% if (cookiesModule) { %>, - "angular-cookies": "~1.2.5"<% } %><% if (sanitizeModule) { %>, - "angular-sanitize": "~1.2.5"<% } %><% if (routeModule) { %>, - "angular-route": "~1.2.5"<% } %> + "angular-resource": "1.2.5"<% } %><% if (cookiesModule) { %>, + "angular-cookies": "1.2.5"<% } %><% if (sanitizeModule) { %>, + "angular-sanitize": "1.2.5"<% } %><% if (routeModule) { %>, + "angular-route": "1.2.5"<% } %> }, "devDependencies": { - "angular-mocks": "~1.2.5", - "angular-scenario": "~1.2.5" + "angular-mocks": "1.2.5", + "angular-scenario": "1.2.5" } }