From 1cf532198eda75d0f2a78374691171655c650807 Mon Sep 17 00:00:00 2001 From: artwells Date: Wed, 3 Sep 2014 20:11:52 -0700 Subject: [PATCH] 0.9.0.0 compatibility changes --- package.js | 5 ++- smart.json | 2 +- versions.json | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 versions.json diff --git a/package.js b/package.js index 1541a24..5c713c3 100644 --- a/package.js +++ b/package.js @@ -1,8 +1,11 @@ Package.describe({ - summary: "Automatically add visitor as anonymous guest with userId" + summary: "Automatically add visitor as anonymous guest with userId", + version: "0.0.6", + git: "https://github.com/artwells/meteor-accounts-guest.git" }); Package.on_use(function (api) { + api.versionsFrom("METEOR@0.9.0"); api.use(['accounts-base', 'accounts-password'], 'client'); api.use(['accounts-base'], 'server'); api.add_files('accounts-guest-server.js', 'server'); diff --git a/smart.json b/smart.json index 140522a..bccdbc9 100644 --- a/smart.json +++ b/smart.json @@ -3,6 +3,6 @@ "description": "Automatically add visitor as anonymous guest with userId", "homepage": "https://github.com/artwells/meteor-accounts-guest", "author": "artwells (http://artwells.com)", - "version": "0.0.1", + "version": "0.0.6", "git": "https://github.com/artwells/meteor-accounts-guest.git" } diff --git a/versions.json b/versions.json new file mode 100644 index 0000000..cb4fdea --- /dev/null +++ b/versions.json @@ -0,0 +1,115 @@ +{ + "dependencies": [ + [ + "accounts-base", + "1.0.0" + ], + [ + "accounts-password", + "1.0.0" + ], + [ + "application-configuration", + "1.0.0" + ], + [ + "binary-heap", + "1.0.0" + ], + [ + "callback-hook", + "1.0.0" + ], + [ + "check", + "1.0.0" + ], + [ + "deps", + "1.0.1" + ], + [ + "ejson", + "1.0.0" + ], + [ + "email", + "1.0.0" + ], + [ + "follower-livedata", + "1.0.0" + ], + [ + "geojson-utils", + "1.0.0" + ], + [ + "id-map", + "1.0.0" + ], + [ + "json", + "1.0.0" + ], + [ + "livedata", + "1.0.7" + ], + [ + "localstorage", + "1.0.0" + ], + [ + "logging", + "1.0.2" + ], + [ + "meteor", + "1.0.2" + ], + [ + "minimongo", + "1.0.1" + ], + [ + "mongo-livedata", + "1.0.3" + ], + [ + "npm-bcrypt", + "0.7.7" + ], + [ + "ordered-dict", + "1.0.0" + ], + [ + "random", + "1.0.0" + ], + [ + "retry", + "1.0.0" + ], + [ + "service-configuration", + "1.0.0" + ], + [ + "sha", + "1.0.0" + ], + [ + "srp", + "1.0.0" + ], + [ + "underscore", + "1.0.0" + ] + ], + "pluginDependencies": [], + "toolVersion": "meteor-tool@1.0.26", + "format": "1.0" +} \ No newline at end of file