Merge branch 'master' into devel for 1.0.4.2

This commit is contained in:
David Glasser
2015-03-20 11:34:44 -07:00
10 changed files with 23 additions and 11 deletions

View File

@@ -46,6 +46,12 @@
- uglify-js: 2.4.17 (from 2.4.13)
## v1.0.4.2, 2015-Mar-20
* Fix regression in 1.0.4 where using Cordova for the first time in a project
with hyphens in its directory name would fail. #3950
## v1.0.4.1, 2015-Mar-18
* Fix regression in 1.0.4 where `meteor publish-for-arch` only worked for

View File

@@ -1 +1 @@
METEOR@1.0.4.1
METEOR@1.0.4.2

View File

@@ -1,4 +1,4 @@
release = Meteor.release ? "1.0.4.1" : "(checkout)";
release = Meteor.release ? "1.0.4.2" : "(checkout)";
Template.registerHelper("release", release);

View File

@@ -1 +1 @@
METEOR@1.0.4.1
METEOR@1.0.4.2

View File

@@ -1 +1 @@
METEOR@1.0.4.1
METEOR@1.0.4.2

View File

@@ -1 +1 @@
METEOR@1.0.4.1
METEOR@1.0.4.2

View File

@@ -1 +1 @@
METEOR@1.0.4.1
METEOR@1.0.4.2

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "The Meteor command-line tool",
version: '1.0.43'
version: '1.0.44'
});
Package.includeTool();

View File

@@ -5,13 +5,19 @@
"0.9.2.1", "0.9.2.2", "0.9.3", "0.9.3.1", "0.9.4", "1.0", "1.0.1", "1.0.2", "1.0.2.1",
"1.0.3", "1.0.3.1", "1.0.3.2"],
"banner": {
"text": "=> Meteor 1.0.4.1: MongoDB 2.6 and 3.0 support, performance improvements,\n Cordova upgrades, template-specific subscriptions, and more!\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4.1 by running 'meteor update'."
"text": "=> Meteor 1.0.4.2: MongoDB 2.6 and 3.0 support, performance improvements,\n Cordova upgrades, template-specific subscriptions, and more!\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4.2 by running 'meteor update'."
}
},
{
"versions": ["1.0.4"],
"banner": {
"text": "=> Meteor 1.0.4.1: Fixes a regression in publishing packages in 1.0.4.\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4.1 by running 'meteor update'."
"text": "=> Meteor 1.0.4.2: Fixes regressions in publishing packages and creating new Cordova projects in 1.0.4.\n\n This release is being downloaded in the background. Update your app to Meteor 1.0.4.2 by running 'meteor update --patch'."
}
},
{
"versions": ["1.0.4.1"],
"banner": {
"text": "=> Meteor 1.0.4.2: Fixes a regression in creating new Cordova projects in 1.0.4 and 1.0.4.1.\n\n This release is being downloaded in the background. Update your app to Meteor 1.0.4.2 by running 'meteor update --patch'."
}
}
]

View File

@@ -1,7 +1,7 @@
{
"track": "METEOR",
"version": "1.0.4.1",
"patchFrom": ["1.0.4"],
"version": "1.0.4.2",
"patchFrom": ["1.0.4", "1.0.4.1"],
"recommended": false,
"official": true,
"description": "The Official Meteor Distribution"