update meteor and version bump

This commit is contained in:
Sacha Greif 2015-04-08 09:41:05 +09:00
parent 4ba2f69e9b
commit 621c51eb63
7 changed files with 19 additions and 6 deletions

View file

@ -1 +1 @@
METEOR@1.1
METEOR@1.1.0.2

View file

@ -18,7 +18,7 @@ backbone@1.0.0
base64@1.0.3
bengott:avatar@0.7.6
binary-heap@1.0.3
blaze@2.1.1
blaze@2.1.2
blaze-tools@1.0.3
boilerplate-generator@1.0.3
callback-hook@1.0.3
@ -82,7 +82,7 @@ minifiers@1.1.5
minimongo@1.0.8
miro:mailchimp@1.0.4
mobile-status-bar@1.0.3
momentjs:moment@2.9.0
momentjs:moment@2.10.0
mongo@1.1.0
mongo-livedata@1.0.8
mrt:cookies@0.3.0
@ -102,12 +102,12 @@ reactive-var@1.0.5
reload@1.1.3
retry@1.0.3
routepolicy@1.0.5
sacha:juice@0.1.3
sacha:juice@0.1.4
sacha:spin@2.0.4
service-configuration@1.0.4
session@1.1.0
sha@1.0.3
softwarerero:accounts-t9n@1.0.8
softwarerero:accounts-t9n@1.0.9
spacebars@1.0.6
spacebars-compiler@1.0.6
spiderable@1.0.7

View file

@ -1,3 +1,9 @@
## v0.15.1 “FixesScope”
* Settings now have their own `telescope-settings` package (thanks @delgermurun!).
* Swedish translation (thanks @Alekzanther!)
* Various fixes (thanks @azizur, @ndarilek, @kai101, @saimeunt, @Kikobeats!).
## v0.15 “SideScope”
#### Layout

View file

@ -1 +1 @@
telescopeVersion = "0.15";
telescopeVersion = "0.15.1";

View file

@ -30,6 +30,7 @@ Meteor.startup(function () {
importRelease('0.14.2');
importRelease('0.14.3');
importRelease('0.15.0');
importRelease('0.15.1');
// if this is before the first run, mark all release notes as read to avoid showing them
if (!Events.findOne({name: 'firstRun'})) {

View file

@ -75,6 +75,7 @@ Package.onUse(function (api) {
api.addFiles('releases/0.14.2.md', 'server', { isAsset: true });
api.addFiles('releases/0.14.3.md', 'server', { isAsset: true });
api.addFiles('releases/0.15.0.md', 'server', { isAsset: true });
api.addFiles('releases/0.15.1.md', 'server', { isAsset: true });
// i18n languages (must come last)

View file

@ -0,0 +1,5 @@
### v0.15.1 “FixesScope”
* Settings now have their own `telescope-settings` package (thanks @delgermurun!).
* Swedish translation (thanks @Alekzanther!)
* Various fixes (thanks @azizur, @ndarilek, @kai101, @saimeunt, @Kikobeats!).