From 1385137f01563d00fb091062d466bee355e34dae Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Thu, 7 Feb 2013 22:49:56 -0800 Subject: [PATCH] Bump version number in prep for release --- History.md | 5 +++++ admin/debian/changelog | 2 +- admin/install-s3.sh | 2 +- admin/manifest.json | 6 +++--- admin/meteor.spec | 2 +- app/lib/updater.js | 2 +- app/meteor/post-upgrade.js | 2 +- docs/client/docs.html | 2 +- docs/client/docs.js | 2 +- 9 files changed, 15 insertions(+), 10 deletions(-) diff --git a/History.md b/History.md index 3fe347cc46a..a27d218574a 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,11 @@ ## vNEXT +## v0.5.5 + +* Some release notes go here. + + ## v0.5.4 * Fix 0.5.3 regression: `meteor run` could fail on OSX 10.8 if environment diff --git a/admin/debian/changelog b/admin/debian/changelog index 04391363969..ef65b0aec6f 100644 --- a/admin/debian/changelog +++ b/admin/debian/changelog @@ -1,4 +1,4 @@ -meteor (0.5.4-1) unstable; urgency=low +meteor (0.5.5-1) unstable; urgency=low * Automated debian build. diff --git a/admin/install-s3.sh b/admin/install-s3.sh index a76eeb5a0f3..867b9f48f7b 100755 --- a/admin/install-s3.sh +++ b/admin/install-s3.sh @@ -5,7 +5,7 @@ ## example. URLBASE="https://d3sqy0vbqsdhku.cloudfront.net" -VERSION="0.5.4" +VERSION="0.5.5" PKGVERSION="${VERSION}-1" UNAME=`uname` diff --git a/admin/manifest.json b/admin/manifest.json index f6a80de6ffd..ad1d1b3f86d 100644 --- a/admin/manifest.json +++ b/admin/manifest.json @@ -1,6 +1,6 @@ { - "version": "0.5.4", - "deb_version": "0.5.4-1", - "rpm_version": "0.5.4-1", + "version": "0.5.5", + "deb_version": "0.5.5-1", + "rpm_version": "0.5.5-1", "urlbase": "https://d3sqy0vbqsdhku.cloudfront.net" } diff --git a/admin/meteor.spec b/admin/meteor.spec index 810ebf38558..66e173c63d9 100644 --- a/admin/meteor.spec +++ b/admin/meteor.spec @@ -5,7 +5,7 @@ Summary: Meteor platform and JavaScript application server Vendor: Meteor Name: meteor -Version: 0.5.4 +Version: 0.5.5 Release: 1 License: MIT Group: Networking/WWW diff --git a/app/lib/updater.js b/app/lib/updater.js index 81f1235a4b2..0b9d8e71f7d 100644 --- a/app/lib/updater.js +++ b/app/lib/updater.js @@ -2,7 +2,7 @@ // true. This will make it act as if it is at version 0.1.0 and use test URLs // for update checks. var testingUpdater = false; -exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.4"; +exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.5"; var fs = require("fs"); var http = require("http"); diff --git a/app/meteor/post-upgrade.js b/app/meteor/post-upgrade.js index 264d220aadf..67c096209cb 100644 --- a/app/meteor/post-upgrade.js +++ b/app/meteor/post-upgrade.js @@ -2,7 +2,7 @@ try { // XXX can't get this from updater.js because in 0.3.7 and before the // updater didn't have the right NODE_PATH set. At some point we can // remove this and just use updater.CURRENT_VERSION. - var VERSION = "0.5.4"; + var VERSION = "0.5.5"; var fs = require('fs'); var path = require('path'); diff --git a/docs/client/docs.html b/docs/client/docs.html index e18b67e4c62..b616d4b11ad 100644 --- a/docs/client/docs.html +++ b/docs/client/docs.html @@ -11,7 +11,7 @@
-

Meteor 0.5.4

+

Meteor 0.5.5

{{> introduction }} {{> concepts }} {{> api }} diff --git a/docs/client/docs.js b/docs/client/docs.js index f854c18bffe..eff5e9690c1 100644 --- a/docs/client/docs.js +++ b/docs/client/docs.js @@ -1,4 +1,4 @@ -METEOR_VERSION = "0.5.4"; +METEOR_VERSION = "0.5.5"; Meteor.startup(function () { // XXX this is broken by the new multi-page layout. Also, it was