Skip to content

Commit 8d03f26

Browse files
committed
chore(release): Release 1.3.7
1 parent bc41df2 commit 8d03f26

15 files changed

+42
-23
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<a name="1.3.7"></a>
2+
## [1.3.7](https://github.com/Urigo/angular-meteor/compare/1.3.6...v1.3.7) (2016-02-28)
3+
4+
5+
### Bug Fixes
6+
7+
* **$angularMeteorSettings:** unknown provider ([bb1422c](https://github.com/Urigo/angular-meteor/commit/bb1422c))
8+
* **$angularMeteorSettings:** unknown provider ([44afc52](https://github.com/Urigo/angular-meteor/commit/44afc52))
9+
* **angular-meteor-data:** missing file extension ([5bf38ea](https://github.com/Urigo/angular-meteor/commit/5bf38ea))
10+
* Apply mixins to rootScope ([1a1c61b](https://github.com/Urigo/angular-meteor/commit/1a1c61b))
11+
* Legacy modules tests not passing ([504952e](https://github.com/Urigo/angular-meteor/commit/504952e))
12+
13+
### Features
14+
15+
* support for new angular-templates ([5ab8fe7](https://github.com/Urigo/angular-meteor/commit/5ab8fe7))
16+
* **templates:** make compatible with modules ([fefa70c](https://github.com/Urigo/angular-meteor/commit/fefa70c))
17+
18+
19+

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-meteor",
33
"main": "./dist/angular-meteor.bundle.min.js",
4-
"version": "1.3.7-beta.1",
4+
"version": "1.3.7",
55
"homepage": "https://github.com/Urigo/angular-meteor",
66
"authors": [
77
"Uri Goldshtein <[email protected]>"

dist/angular-meteor.bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9369,7 +9369,7 @@ var Promise = Package.promise.Promise;
93699369
// //
93709370
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
93719371
//
9372-
/*! angular-meteor v1.3.7-beta.1 */ // 1
9372+
/*! angular-meteor v1.3.7 */ // 1
93739373
/******/ (function(modules) { // webpackBootstrap // 2
93749374
/******/ // The module cache // 3
93759375
/******/ var installedModules = {}; // 4

dist/angular-meteor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-meteor v1.3.7-beta.1 */
1+
/*! angular-meteor v1.3.7 */
22
/******/ (function(modules) { // webpackBootstrap
33
/******/ // The module cache
44
/******/ var installedModules = {};

dist/angular-meteor.min.js

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

dist/angular-meteor.min.js.map

+1-1
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,6 +1,6 @@
11
{
22
"name": "angular-meteor",
3-
"version": "1.3.7-beta.1",
3+
"version": "1.3.7",
44
"main": "dist/angular-meteor.js",
55
"description": "Combining the simplicity and power of AngularJS and Meteor",
66
"keywords": [

packages/angular-meteor-data/.versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
33
44

packages/angular-meteor-data/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package.describe({
22
name: 'angular-meteor-data',
33
summary: 'Everything you need to use AngularJS in your Meteor app',
4-
version: '0.3.0-beta.1',
4+
version: '0.3.0',
55
git: 'https://github.com/Urigo/angular-meteor.git'
66
});
77

88
Npm.depends({
9-
'angular-meteor': '1.3.7-beta.1'
9+
'angular-meteor': '1.3.7'
1010
});
1111

1212
Package.onUse(function (api) {

packages/angular-with-blaze/.versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
2-
3-
2+
3+
44
55
66

packages/angular-with-blaze/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "angular-with-blaze",
33
summary: "Everything you need to use both AngularJS and Blaze templates in your Meteor app",
4-
version: "1.3.7-beta.1",
4+
version: "1.3.7",
55
git: "https://github.com/Urigo/angular-meteor.git",
66
documentation: "../../README.md"
77
});
@@ -12,7 +12,7 @@ Package.onUse(function (api) {
1212

1313
api.imply([
1414
'blaze-html-templates',
15-
15+
1616
1717
]);
1818
});

packages/angular/.versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
2-
1+
2+
33
44
55

packages/angular/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "angular",
33
summary: "Everything you need to use AngularJS in your Meteor app",
4-
version: "1.3.7-beta.1_1",
4+
version: "1.3.7",
55
git: "https://github.com/Urigo/angular-meteor.git",
66
documentation: "../../README.md"
77
});
@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('[email protected]');
1111

1212
api.imply([
13-
13+
1414
1515
'pbastowski:[email protected]'
1616
]);

packages/urigo-angular/.versions

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
2-
angular-meteor-data@0.2.0
3-
angular-templates@0.0.3
1+
2+
angular-meteor-data@0.3.0
3+
angular-templates@1.0.0
44
55
66
@@ -53,6 +53,6 @@ [email protected]
5353
5454
5555
56-
56+
5757
5858

packages/urigo-angular/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Package.describe({
22
name: "urigo:angular",
33
summary: "Deprecated: use the official `angular` package instead!",
4-
version: "1.3.6",
4+
version: "1.3.7",
55
git: "https://github.com/Urigo/angular-meteor.git",
66
documentation: null
77
});
88

99
Package.on_use(function (api) {
10-
api.imply("[email protected].6");
10+
api.imply("[email protected].7");
1111
});

0 commit comments

Comments
 (0)