From d58d5f7e800a86b729f768ace29472d6115bf525 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Thu, 14 Mar 2013 11:12:15 -0700 Subject: [PATCH 1/3] Bump version number for next release. --- 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 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/admin/debian/changelog b/admin/debian/changelog index 9c8bb765b1..8c04be965b 100644 --- a/admin/debian/changelog +++ b/admin/debian/changelog @@ -1,4 +1,4 @@ -meteor (0.5.8-1) unstable; urgency=low +meteor (0.5.9-1) unstable; urgency=low * Automated debian build. diff --git a/admin/install-s3.sh b/admin/install-s3.sh index ad22b50862..03f59a07ea 100755 --- a/admin/install-s3.sh +++ b/admin/install-s3.sh @@ -5,7 +5,7 @@ ## example. URLBASE="https://d3sqy0vbqsdhku.cloudfront.net" -VERSION="0.5.8" +VERSION="0.5.9" PKGVERSION="${VERSION}-1" UNAME=`uname` diff --git a/admin/manifest.json b/admin/manifest.json index 678af22cc4..b94225965f 100644 --- a/admin/manifest.json +++ b/admin/manifest.json @@ -1,6 +1,6 @@ { - "version": "0.5.8", - "deb_version": "0.5.8-1", - "rpm_version": "0.5.8-1", + "version": "0.5.9", + "deb_version": "0.5.9-1", + "rpm_version": "0.5.9-1", "urlbase": "https://d3sqy0vbqsdhku.cloudfront.net" } diff --git a/admin/meteor.spec b/admin/meteor.spec index 21fa939344..5a609aa4a3 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.8 +Version: 0.5.9 Release: 1 License: MIT Group: Networking/WWW diff --git a/app/lib/updater.js b/app/lib/updater.js index 3e980143ed..7131c392d7 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.8"; +exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.9"; var fs = require("fs"); var http = require("http"); diff --git a/app/meteor/post-upgrade.js b/app/meteor/post-upgrade.js index d071904e99..95ec6b87aa 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.8"; + var VERSION = "0.5.9"; var fs = require('fs'); var path = require('path'); diff --git a/docs/client/docs.html b/docs/client/docs.html index 06e1ba0673..a806b6705c 100644 --- a/docs/client/docs.html +++ b/docs/client/docs.html @@ -11,7 +11,7 @@
-

Meteor 0.5.8

+

Meteor 0.5.9

{{> introduction }} {{> concepts }} {{> api }} diff --git a/docs/client/docs.js b/docs/client/docs.js index 3ba502ddd3..290e6b08e7 100644 --- a/docs/client/docs.js +++ b/docs/client/docs.js @@ -1,4 +1,4 @@ -METEOR_VERSION = "0.5.8"; +METEOR_VERSION = "0.5.9"; Meteor.startup(function () { // XXX this is broken by the new multi-page layout. Also, it was From e5fb32dfab2351b7424a114de63826ea08aa0c51 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Thu, 14 Mar 2013 12:07:17 -0700 Subject: [PATCH 2/3] History.md for 0.5.9. --- History.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/History.md b/History.md index ea11a64aa2..6af7ffee18 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,15 @@ ## vNEXT +## v0.5.9 + +* Fix regression in 0.5.8 that prevented users from editing their own + profile. #809 + +* Fix regression in 0.5.8 where `Meteor.loggingIn()` would not update + reactively. #811 + + ## v0.5.8 * Calls to the `update` and `remove` collection functions in untrusted code may From 45fef52095bb6726cc1b2f05008ad891c446100a Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Thu, 14 Mar 2013 12:12:24 -0700 Subject: [PATCH 3/3] Use coffeescript.org instead of github link. --- docs/client/packages/coffeescript.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/client/packages/coffeescript.html b/docs/client/packages/coffeescript.html index ac8ec830b8..08e09c3e9c 100644 --- a/docs/client/packages/coffeescript.html +++ b/docs/client/packages/coffeescript.html @@ -2,13 +2,13 @@ {{#better_markdown}} ## `coffeescript` -[CoffeeScript](http://jashkenas.github.com/coffee-script/) is a little language that compiles into JavaScript. It -provides a simple syntax without lots of braces and parentheses. The -code compiles one-to-one into the equivalent JS, and there is no -interpretation at runtime. +[CoffeeScript](http://coffeescript.org/) is a little language that +compiles into JavaScript. It provides a simple syntax without lots of +braces and parentheses. The code compiles one-to-one into the +equivalent JS, and there is no interpretation at runtime. CoffeeScript is supported on both the client and the server. Files -ending with `.coffee` or `.litcoffee` are automatically compiled to +ending with `.coffee` or `.litcoffee` are automatically compiled to JavaScript. {{/better_markdown}}