Skip to content

Commit

Permalink
Merge branch 'master' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Mar 18, 2015
2 parents 8ac310b + c775e1e commit 601f007
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 13 deletions.
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@
- uglify-js: 2.4.17 (from 2.4.13)


## v1.0.4.1, 2015-Mar-18

* Fix regression in 1.0.4 where `meteor publish-for-arch` only worked for
packages without colons in their name. #3951


## v1.0.4, 2015-Mar-17

### Mongo Driver
Expand Down
2 changes: 0 additions & 2 deletions docs/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ jquery
underscore
showdown
spiderable
appcache
reload-safetybelt
simple:markdown-templating
simple:highlight.js
less
force-ssl
2 changes: 1 addition & 1 deletion docs/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected]
[email protected].1
2 changes: 0 additions & 2 deletions docs/.meteor/versions
2 changes: 1 addition & 1 deletion docs/client/helpers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release = Meteor.release ? "1.0.4" : "(checkout)";
release = Meteor.release ? "1.0.4.1" : "(checkout)";

Template.registerHelper("release", release);

Expand Down
2 changes: 2 additions & 0 deletions docs/lib/appcache-config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
if (Meteor.isServer) {
/*
Meteor.AppCache.config({
// Turn off appcache on Safari. Apparently Safari 7's AppCache is totally
// busted. In particular, this fact combined with our "RELOAD_SAFETYBELT"
Expand All @@ -9,4 +10,5 @@ if (Meteor.isServer) {
// ... and Firefox too. See eg https://github.com/meteor/meteor/issues/3248
firefox: false
});
*/
}
2 changes: 1 addition & 1 deletion examples/clock/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected]
[email protected].1
2 changes: 1 addition & 1 deletion examples/leaderboard/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected]
[email protected].1
2 changes: 1 addition & 1 deletion examples/localmarket/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected]
[email protected].1
2 changes: 1 addition & 1 deletion examples/todos/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected]
[email protected].1
2 changes: 1 addition & 1 deletion packages/meteor-tool/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: "The Meteor command-line tool",
version: '1.0.42'
version: '1.0.43'
});

Package.includeTool();
8 changes: 7 additions & 1 deletion scripts/admin/banners.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
"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: 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 by running 'meteor update'."
"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'."
}
},
{
"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'."
}
}
]
Expand Down
3 changes: 2 additions & 1 deletion scripts/admin/meteor-release-official.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"track": "METEOR",
"version": "1.0.4",
"version": "1.0.4.1",
"patchFrom": ["1.0.4"],
"recommended": false,
"official": true,
"description": "The Official Meteor Distribution"
Expand Down

0 comments on commit 601f007

Please sign in to comment.