diff --git a/History.md b/History.md index 75d6a6f4da..364ca06904 100644 --- a/History.md +++ b/History.md @@ -1,12 +1,15 @@ ## vNEXT +## v0.3.9 + * Add `spiderable` package to allow web crawlers to index Meteor apps. * `meteor deploy` uses SSL to protect application deployment. * Fix `stopImmediatePropagation()`. #205 + ## v0.3.8 * HTTPS support diff --git a/admin/debian/changelog b/admin/debian/changelog index 1eec8a34ea..e7af1136c1 100644 --- a/admin/debian/changelog +++ b/admin/debian/changelog @@ -1,4 +1,4 @@ -meteor (0.3.8-1) unstable; urgency=low +meteor (0.3.9-1) unstable; urgency=low * Automated debian build. diff --git a/admin/install-s3.sh b/admin/install-s3.sh index 46f122a00c..a98a5a6f93 100755 --- a/admin/install-s3.sh +++ b/admin/install-s3.sh @@ -5,7 +5,7 @@ ## example. URLBASE="https://d3sqy0vbqsdhku.cloudfront.net" -VERSION="0.3.8" +VERSION="0.3.9" PKGVERSION="${VERSION}-1" UNAME=`uname` diff --git a/admin/manifest.json b/admin/manifest.json index 07f0e7ce07..6909f075f4 100644 --- a/admin/manifest.json +++ b/admin/manifest.json @@ -1,6 +1,6 @@ { - "version": "0.3.8", - "deb_version": "0.3.8-1", - "rpm_version": "0.3.8-1", + "version": "0.3.9", + "deb_version": "0.3.9-1", + "rpm_version": "0.3.9-1", "urlbase": "https://d3sqy0vbqsdhku.cloudfront.net" } diff --git a/admin/meteor.spec b/admin/meteor.spec index 3d8fcc5660..b158cf9dfd 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.3.8 +Version: 0.3.9 Release: 1 License: MIT Group: Networking/WWW diff --git a/app/lib/updater.js b/app/lib/updater.js index 24762d830b..d4fda9083c 100644 --- a/app/lib/updater.js +++ b/app/lib/updater.js @@ -1,4 +1,4 @@ -exports.CURRENT_VERSION = "0.3.8"; +exports.CURRENT_VERSION = "0.3.9"; var fs = require("fs"); var http = require("http"); diff --git a/app/meteor/post-upgrade.js b/app/meteor/post-upgrade.js index dbb3a2d33b..d1755703ce 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.3.8"; + var VERSION = "0.3.9"; var fs = require('fs'); var path = require('path'); diff --git a/docs/client/docs.html b/docs/client/docs.html index 6d5a108050..7ac14a97f5 100644 --- a/docs/client/docs.html +++ b/docs/client/docs.html @@ -11,7 +11,7 @@
-

Meteor 0.3.8

+

Meteor 0.3.9

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