Skip to content

Commit

Permalink
version bump (0.21.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
SachaG committed Jul 1, 2015
1 parent 5ac2cca commit 9837824
Show file tree
Hide file tree
Showing 42 changed files with 128 additions and 128 deletions.
68 changes: 34 additions & 34 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -113,40 +113,40 @@ srp@1.0.3
standard-app-packages@1.0.5
stylus@1.0.7
tap:i18n@1.5.0
telescope:api@0.20.6
telescope:comments@0.20.6
telescope:core@0.20.6
telescope:daily@0.20.6
telescope:datetimepicker@0.20.6
telescope:email@0.20.6
telescope:embedly@0.20.6
telescope:events@0.20.6
telescope:getting-started@0.20.6
telescope:i18n@0.20.6
telescope:invites@0.20.6
telescope:kadira@0.20.6
telescope:lib@0.20.6
telescope:messages@0.20.6
telescope:migrations@0.20.6
telescope:newsletter@0.20.6
telescope:notifications@0.20.6
telescope:pages@0.20.6
telescope:post-by-feed@0.20.6
telescope:posts@0.20.6
telescope:releases@0.20.6
telescope:rss@0.20.6
telescope:scoring@0.20.6
telescope:search@0.20.6
telescope:settings@0.20.6
telescope:share@0.20.6
telescope:singleday@0.20.6
telescope:subscribe-to-posts@0.20.6
telescope:tagline-banner@0.20.6
telescope:tags@0.20.6
telescope:theme-base@0.20.6
telescope:theme-hubble@0.20.6
telescope:update-prompt@0.20.6
telescope:users@0.20.6
telescope:api@0.21.1
telescope:comments@0.21.1
telescope:core@0.21.1
telescope:daily@0.21.1
telescope:datetimepicker@0.21.1
telescope:email@0.21.1
telescope:embedly@0.21.1
telescope:events@0.21.1
telescope:getting-started@0.21.1
telescope:i18n@0.21.1
telescope:invites@0.21.1
telescope:kadira@0.21.1
telescope:lib@0.21.1
telescope:messages@0.21.1
telescope:migrations@0.21.1
telescope:newsletter@0.21.1
telescope:notifications@0.21.1
telescope:pages@0.21.1
telescope:post-by-feed@0.21.1
telescope:posts@0.21.1
telescope:releases@0.21.1
telescope:rss@0.21.1
telescope:scoring@0.21.1
telescope:search@0.21.1
telescope:settings@0.21.1
telescope:share@0.21.1
telescope:singleday@0.21.1
telescope:subscribe-to-posts@0.21.1
telescope:tagline-banner@0.21.1
telescope:tags@0.21.1
telescope:theme-base@0.21.1
telescope:theme-hubble@0.21.1
telescope:update-prompt@0.21.1
telescope:users@0.21.1
templating@1.1.1
tracker@1.0.7
tsega:bootstrap3-datetimepicker@3.1.3_3
Expand Down
2 changes: 1 addition & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.21 “SlugScope”
## v0.21.1 “SlugScope”

* Added URL slugs for posts (i.e. `/posts/xyz/my-post-slug`).
* i18n files clean-up.
Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-api/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "telescope:api",
summary: "Telescope API package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-api.git"
});

Package.onUse(function (api) {

api.versionsFrom(['METEOR@1.0']);

api.use(['telescope:core@0.20.6']);
api.use(['telescope:core@0.21.1']);

api.addFiles(['lib/server/api.js', 'lib/server/routes.js'], ['server']);

Expand Down
10 changes: 5 additions & 5 deletions packages/telescope-comments/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:comments",
summary: "Telescope comments package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,10 +10,10 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);

api.use([
'telescope:lib@0.20.6',
'telescope:i18n@0.20.6',
'telescope:settings@0.20.6',
'telescope:users@0.20.6'
'telescope:lib@0.21.1',
'telescope:i18n@0.21.1',
'telescope:settings@0.21.1',
'telescope:users@0.21.1'
]);

api.addFiles([
Expand Down
18 changes: 9 additions & 9 deletions packages/telescope-core/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:core",
summary: "Telescope core package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,14 +10,14 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");

var packages = [
'telescope:lib@0.20.6', // no dependencies
'telescope:messages@0.20.6', // lib
'telescope:i18n@0.20.6', // lib
'telescope:events@0.20.6', // lib, i18n
'telescope:settings@0.20.6', // lib, i18n
'telescope:users@0.20.6', // lib, i18n, settings
'telescope:comments@0.20.6', // lib, i18n, settings, users
'telescope:posts@0.20.6' // lib, i18n, settings, users, comments
'telescope:lib@0.21.1', // no dependencies
'telescope:messages@0.21.1', // lib
'telescope:i18n@0.21.1', // lib
'telescope:events@0.21.1', // lib, i18n
'telescope:settings@0.21.1', // lib, i18n
'telescope:users@0.21.1', // lib, i18n, settings
'telescope:comments@0.21.1', // lib, i18n, settings, users
'telescope:posts@0.21.1' // lib, i18n, settings, users, comments
];

api.use(packages);
Expand Down
6 changes: 3 additions & 3 deletions packages/telescope-daily/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:daily",
summary: "Telescope daily view",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,8 +10,8 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);

api.use([
'telescope:core@0.20.6',
'telescope:singleday@0.20.6',
'telescope:core@0.21.1',
'telescope:singleday@0.21.1',
]);

api.addFiles([
Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-datetimepicker/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:datetimepicker",
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-datetimepicker.git"
});

Expand All @@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");

api.use([
'telescope:core@0.20.6',
'telescope:core@0.21.1',
'tsega:bootstrap3-datetimepicker@3.1.3_1'
]);

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-email/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:email",
summary: "Telescope email package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-email.git"
});

Expand All @@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);

api.use([
'telescope:core@0.20.6',
'telescope:core@0.21.1',
'sacha:juice@0.1.4'
]);

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-embedly/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "telescope:embedly",
summary: "Telescope Embedly module package",
version: "0.20.6",
version: "0.21.1",
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
});

Package.onUse( function(api) {

api.versionsFrom("METEOR@1.0");

api.use(['telescope:core@0.20.6']);
api.use(['telescope:core@0.21.1']);

api.addFiles([
'package-tap.i18n',
Expand Down
6 changes: 3 additions & 3 deletions packages/telescope-events/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:events",
summary: "Telescope event tracking package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,8 +10,8 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");

api.use([
'telescope:lib@0.20.6',
'telescope:i18n@0.20.6'
'telescope:lib@0.21.1',
'telescope:i18n@0.21.1'
]);

api.addFiles([
Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-getting-started/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:getting-started",
summary: "Getting started posts",
version: '0.20.6',
version: '0.21.1',
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
});

Expand All @@ -17,7 +17,7 @@ Package.onUse(function (api) {

// automatic (let the package specify where it's needed)

api.use(['telescope:core@0.20.6']);
api.use(['telescope:core@0.21.1']);

// client

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-i18n/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "telescope:i18n",
summary: "Telescope i18n package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Package.onUse(function (api) {

api.versionsFrom(['METEOR@1.0']);

api.use(['telescope:lib@0.20.6']);
api.use(['telescope:lib@0.21.1']);

api.use(["session"], "client");

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-invites/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:invites",
summary: "Telescope invites package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-invites.git"
});

Expand All @@ -17,7 +17,7 @@ Package.onUse(function (api) {

// automatic (let the package specify where it's needed)

api.use(['telescope:core@0.20.6']);
api.use(['telescope:core@0.21.1']);

// client

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-kadira/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:kadira",
summary: "Telescope Kadira package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-kadira.git"
});

Expand All @@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);

api.use([
'telescope:core@0.20.6',
'telescope:core@0.21.1',
'meteorhacks:kadira@2.20.6',
'meteorhacks:kadira-debug@1.3.3'
], ['client', 'server']);
Expand Down
2 changes: 1 addition & 1 deletion packages/telescope-lib/lib/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

Telescope = {};

Telescope.VERSION = '0.21';
Telescope.VERSION = '0.21.1';
2 changes: 1 addition & 1 deletion packages/telescope-lib/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'telescope:lib',
summary: 'Telescope libraries.',
version: '0.20.6',
version: '0.21.1',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-messages/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "telescope:messages",
summary: "Telescope messages package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-messages.git"
});

Package.onUse(function(api) {

api.versionsFrom("METEOR@1.0");

api.use(['telescope:lib@0.20.6']);
api.use(['telescope:lib@0.21.1']);

api.addFiles([
'lib/client/messages.js',
Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-migrations/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "telescope:migrations",
summary: "Telescope migrations package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Package.onUse(function(api) {

api.versionsFrom("METEOR@1.0");

api.use(['telescope:core@0.20.6']);
api.use(['telescope:core@0.21.1']);

api.addFiles([
'lib/server/migrations.js'
Expand Down
4 changes: 2 additions & 2 deletions packages/telescope-newsletter/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "telescope:newsletter",
summary: "Telescope email newsletter package",
version: "0.20.6",
version: "0.21.1",
git: "https://github.com/TelescopeJS/telescope-newsletter.git"
});

Expand All @@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");

api.use([
'telescope:core@0.20.6',
'telescope:core@0.21.1',
'miro:mailchimp@1.0.4',
]);

Expand Down
Loading

0 comments on commit 9837824

Please sign in to comment.