Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit c4b2691

Browse files
committed
version 1.5.0
1 parent f26d0d0 commit c4b2691

File tree

31 files changed

+105
-105
lines changed

31 files changed

+105
-105
lines changed

packages/example-forum/package.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "example-forum",
33
summary: "Telescope forum package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1414
// vulcan core
15-
'vulcan:core@1.4.0',
15+
'vulcan:core@1.5.0',
1616

1717
// vulcan packages
18-
'vulcan:posts@1.4.0',
19-
'vulcan:comments@1.4.0',
20-
'vulcan:voting@1.4.0',
21-
'vulcan:accounts@1.4.0',
18+
'vulcan:posts@1.5.0',
19+
'vulcan:comments@1.5.0',
20+
'vulcan:voting@1.5.0',
21+
'vulcan:accounts@1.5.0',
2222
'vulcan:email',
2323
'vulcan:forms',
2424
'vulcan:newsletter',

packages/vulcan-accounts/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'vulcan:accounts',
3-
version: '1.4.0',
3+
version: '1.5.0',
44
summary: 'Accounts UI for React in Meteor 1.3+',
55
git: 'https://github.com/studiointeract/accounts-ui',
66
documentation: 'README.md'
@@ -9,7 +9,7 @@ Package.describe({
99
Package.onUse(function(api) {
1010
api.versionsFrom('1.3');
1111

12-
api.use('vulcan:core@1.4.0');
12+
api.use('vulcan:core@1.5.0');
1313

1414
api.use('ecmascript');
1515
api.use('tracker');

packages/vulcan-api/package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:api",
33
summary: "Telescope API package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.4.0',
14-
'vulcan:posts@1.4.0',
15-
'vulcan:comments@1.4.0'
13+
'vulcan:core@1.5.0',
14+
'vulcan:posts@1.5.0',
15+
'vulcan:comments@1.5.0'
1616
]);
1717

1818
api.mainModule("lib/server.js", "server");

packages/vulcan-base-components/package.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:base-components",
33
summary: "Telescope components package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
1313
// Vulcan packages
14-
'vulcan:core@1.4.0',
15-
'vulcan:posts@1.4.0',
16-
'vulcan:comments@1.4.0',
17-
'vulcan:voting@1.4.0',
18-
'vulcan:accounts@1.4.0',
19-
'vulcan:categories@1.4.0',
14+
'vulcan:core@1.5.0',
15+
'vulcan:posts@1.5.0',
16+
'vulcan:comments@1.5.0',
17+
'vulcan:voting@1.5.0',
18+
'vulcan:accounts@1.5.0',
19+
'vulcan:categories@1.5.0',
2020
]);
2121

2222
api.mainModule("lib/server.js", "server");

packages/vulcan-base-styles/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:base-styles",
33
summary: "Vulcan basic styles package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.4.0',
13+
'vulcan:core@1.5.0',
1414
'fourseven:[email protected]',
1515
]);
1616

packages/vulcan-categories/package.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:categories",
33
summary: "Telescope tags package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/telescope-tags.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.4.0',
14-
'vulcan:posts@1.4.0',
13+
'vulcan:core@1.5.0',
14+
'vulcan:posts@1.5.0',
1515
]);
1616

1717
api.mainModule("lib/server.js", "server");

packages/vulcan-cloudinary/package.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'vulcan:cloudinary',
33
summary: 'Telescope file upload package.',
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'vulcan:posts@1.4.0',
14-
'vulcan:core@1.4.0'
13+
'vulcan:posts@1.5.0',
14+
'vulcan:core@1.5.0'
1515
]);
1616

1717
api.addFiles([

packages/vulcan-comments/package.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:comments",
33
summary: "Telescope comments package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.4.0',
14-
'vulcan:posts@1.4.0',
13+
'vulcan:core@1.5.0',
14+
'vulcan:posts@1.5.0',
1515
]);
1616

1717
api.mainModule("lib/server.js", "server");

packages/vulcan-core/package.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:core",
33
summary: "Telescope core package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'vulcan:lib@1.4.0',
14-
'vulcan:i18n@1.4.0',
15-
'vulcan:users@1.4.0',
16-
'vulcan:routing@1.4.0'
13+
'vulcan:lib@1.5.0',
14+
'vulcan:i18n@1.5.0',
15+
'vulcan:users@1.5.0',
16+
'vulcan:routing@1.5.0'
1717
]);
1818

1919
api.imply([
20-
'vulcan:lib@1.4.0'
20+
'vulcan:lib@1.5.0'
2121
]);
2222

2323
api.mainModule('lib/server/main.js', 'server');

packages/vulcan-debug/package.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:debug",
33
summary: "Telescope debug package",
4-
version: '1.4.0',
4+
version: '1.5.0',
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1616
// Vulcan packages
1717

18-
'vulcan:core@1.4.0',
19-
'vulcan:posts@1.4.0',
20-
'vulcan:email@1.4.0',
21-
'vulcan:comments@1.4.0'
18+
'vulcan:core@1.5.0',
19+
'vulcan:posts@1.5.0',
20+
'vulcan:email@1.5.0',
21+
'vulcan:comments@1.5.0'
2222

2323
]);
2424

0 commit comments

Comments
 (0)