Skip to content

Commit

Permalink
version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SachaG committed Jun 12, 2017
1 parent f26d0d0 commit c4b2691
Show file tree
Hide file tree
Showing 31 changed files with 105 additions and 105 deletions.
12 changes: 6 additions & 6 deletions packages/example-forum/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "example-forum",
summary: "Telescope forum package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -12,13 +12,13 @@ Package.onUse(function (api) {
api.use([

// vulcan core
'vulcan:core@1.4.0',
'vulcan:core@1.5.0',

// vulcan packages
'vulcan:posts@1.4.0',
'vulcan:comments@1.4.0',
'vulcan:voting@1.4.0',
'vulcan:accounts@1.4.0',
'vulcan:posts@1.5.0',
'vulcan:comments@1.5.0',
'vulcan:voting@1.5.0',
'vulcan:accounts@1.5.0',
'vulcan:email',
'vulcan:forms',
'vulcan:newsletter',
Expand Down
4 changes: 2 additions & 2 deletions packages/vulcan-accounts/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'vulcan:accounts',
version: '1.4.0',
version: '1.5.0',
summary: 'Accounts UI for React in Meteor 1.3+',
git: 'https://github.com/studiointeract/accounts-ui',
documentation: 'README.md'
Expand All @@ -9,7 +9,7 @@ Package.describe({
Package.onUse(function(api) {
api.versionsFrom('1.3');

api.use('vulcan:core@1.4.0');
api.use('vulcan:core@1.5.0');

api.use('ecmascript');
api.use('tracker');
Expand Down
8 changes: 4 additions & 4 deletions packages/vulcan-api/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:api",
summary: "Telescope API package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:comments@1.4.0'
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'vulcan:comments@1.5.0'
]);

api.mainModule("lib/server.js", "server");
Expand Down
14 changes: 7 additions & 7 deletions packages/vulcan-base-components/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:base-components",
summary: "Telescope components package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -11,12 +11,12 @@ Package.onUse(function (api) {

api.use([
// Vulcan packages
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:comments@1.4.0',
'vulcan:voting@1.4.0',
'vulcan:accounts@1.4.0',
'vulcan:categories@1.4.0',
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'vulcan:comments@1.5.0',
'vulcan:voting@1.5.0',
'vulcan:accounts@1.5.0',
'vulcan:categories@1.5.0',
]);

api.mainModule("lib/server.js", "server");
Expand Down
4 changes: 2 additions & 2 deletions packages/vulcan-base-styles/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:base-styles",
summary: "Vulcan basic styles package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'vulcan:core@1.4.0',
'vulcan:core@1.5.0',
'fourseven:[email protected]',
]);

Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-categories/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:categories",
summary: "Telescope tags package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/telescope-tags.git"
});

Expand All @@ -10,8 +10,8 @@ Package.onUse(function (api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
]);

api.mainModule("lib/server.js", "server");
Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-cloudinary/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'vulcan:cloudinary',
summary: 'Telescope file upload package.',
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'vulcan:posts@1.4.0',
'vulcan:core@1.4.0'
'vulcan:posts@1.5.0',
'vulcan:core@1.5.0'
]);

api.addFiles([
Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-comments/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:comments",
summary: "Telescope comments package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
]);

api.mainModule("lib/server.js", "server");
Expand Down
12 changes: 6 additions & 6 deletions packages/vulcan-core/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:core",
summary: "Telescope core package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,14 +10,14 @@ Package.onUse(function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:lib@1.4.0',
'vulcan:i18n@1.4.0',
'vulcan:users@1.4.0',
'vulcan:routing@1.4.0'
'vulcan:lib@1.5.0',
'vulcan:i18n@1.5.0',
'vulcan:users@1.5.0',
'vulcan:routing@1.5.0'
]);

api.imply([
'vulcan:lib@1.4.0'
'vulcan:lib@1.5.0'
]);

api.mainModule('lib/server/main.js', 'server');
Expand Down
10 changes: 5 additions & 5 deletions packages/vulcan-debug/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:debug",
summary: "Telescope debug package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -15,10 +15,10 @@ Package.onUse(function (api) {

// Vulcan packages

'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:email@1.4.0',
'vulcan:comments@1.4.0'
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'vulcan:email@1.5.0',
'vulcan:comments@1.5.0'

]);

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

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

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:comments@1.4.0',
'vulcan:email@1.4.0'
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'vulcan:comments@1.5.0',
'vulcan:email@1.5.0'
]);

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

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

api.use([
'vulcan:core@1.4.0'
'vulcan:core@1.5.0'
]);

api.mainModule("lib/server.js", "server");
Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-embedly/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:embedly",
summary: "Telescope Embedly module package",
version: '1.4.0',
version: '1.5.0',
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
});

Expand All @@ -10,8 +10,8 @@ Package.onUse( function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'fourseven:[email protected]'
]);

Expand Down
4 changes: 2 additions & 2 deletions packages/vulcan-events/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:events",
summary: "Telescope event tracking package",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:core@1.5.0',
]);

api.mainModule("lib/server.js", "server");
Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-forms-tags/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:forms-tags",
summary: "Telescope tag input package",
version: '1.4.0',
version: '1.5.0',
git: 'https://github.com/TelescopeJS/Telescope.git'
});

Expand All @@ -10,8 +10,8 @@ Package.onUse( function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:forms@1.4.0'
'vulcan:core@1.5.0',
'vulcan:forms@1.5.0'
]);

api.mainModule("lib/export.js", ["client", "server"]);
Expand Down
6 changes: 3 additions & 3 deletions packages/vulcan-forms-upload/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:forms-upload",
summary: "Vulcan package extending vulcan:forms to upload images to Cloudinary from a drop zone.",
version: "1.4.0",
version: "1.5.0",
git: 'https://github.com/xavcz/nova-forms-upload.git'
});

Expand All @@ -10,8 +10,8 @@ Package.onUse( function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:forms@1.4.0',
'vulcan:core@1.5.0',
'vulcan:forms@1.5.0',
'fourseven:[email protected]'
]);

Expand Down
4 changes: 2 additions & 2 deletions packages/vulcan-forms/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:forms",
summary: "Form containers for React",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/meteor-utilities/react-form-containers.git"
});

Expand All @@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("[email protected]");

api.use([
'vulcan:core@1.4.0',
'vulcan:core@1.5.0',

'fourseven:[email protected]'
]);
Expand Down
10 changes: 5 additions & 5 deletions packages/vulcan-getting-started/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "vulcan:getting-started",
summary: "Getting started posts",
version: '1.4.0',
version: '1.5.0',
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
});

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

api.use([
'vulcan:core@1.4.0',
'vulcan:posts@1.4.0',
'vulcan:comments@1.4.0',
'vulcan:events@1.4.0',
'vulcan:core@1.5.0',
'vulcan:posts@1.5.0',
'vulcan:comments@1.5.0',
'vulcan:events@1.5.0',
]);

// client
Expand Down
Loading

0 comments on commit c4b2691

Please sign in to comment.