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

Commit 6151b80

Browse files
committed
v1.6.0
1 parent 9a8c7b7 commit 6151b80

File tree

33 files changed

+116
-116
lines changed

33 files changed

+116
-116
lines changed

.meteor/versions

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ [email protected]
7777
7878
7979
80-
vulcan:accounts@1.5.0
81-
vulcan:core@1.5.0
82-
vulcan:forms@1.5.0
83-
vulcan:i18n@1.5.0
84-
vulcan:i18n-en-us@1.5.0
85-
vulcan:lib@1.5.0
86-
vulcan:routing@1.5.0
87-
vulcan:users@1.5.0
80+
vulcan:accounts@1.6.0
81+
vulcan:core@1.6.0
82+
vulcan:forms@1.6.0
83+
vulcan:i18n@1.6.0
84+
vulcan:i18n-en-us@1.6.0
85+
vulcan:lib@1.6.0
86+
vulcan:routing@1.6.0
87+
vulcan:users@1.6.0
8888
8989

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: "Vulcan forum package",
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

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

1717
// vulcan packages
18-
'vulcan:posts@1.5.0',
19-
'vulcan:comments@1.5.0',
20-
'vulcan:voting@1.5.0',
21-
'vulcan:accounts@1.5.0',
18+
'vulcan:posts@1.6.0',
19+
'vulcan:comments@1.6.0',
20+
'vulcan:voting@1.6.0',
21+
'vulcan:accounts@1.6.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.5.0',
3+
version: '1.6.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.5.0');
12+
api.use('vulcan:core@1.6.0');
1313

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

packages/vulcan-admin/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:admin",
33
summary: "Vulcan components package",
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -14,7 +14,7 @@ Package.onUse(function (api) {
1414
'fourseven:[email protected]',
1515
'dynamic-import',
1616
// Vulcan packages
17-
'vulcan:core@1.5.0',
17+
'vulcan:core@1.6.0',
1818

1919
]);
2020

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: "Vulcan API package",
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.5.0',
14-
'vulcan:posts@1.5.0',
15-
'vulcan:comments@1.5.0'
13+
'vulcan:core@1.6.0',
14+
'vulcan:posts@1.6.0',
15+
'vulcan:comments@1.6.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: "Vulcan components package",
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

1212
api.use([
1313
// Vulcan packages
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',
14+
'vulcan:core@1.6.0',
15+
'vulcan:posts@1.6.0',
16+
'vulcan:comments@1.6.0',
17+
'vulcan:voting@1.6.0',
18+
'vulcan:accounts@1.6.0',
19+
'vulcan:categories@1.6.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.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

1212
api.use([
13-
'vulcan:core@1.5.0',
13+
'vulcan:core@1.6.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: "Vulcan tags package",
4-
version: '1.5.0',
4+
version: '1.6.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.5.0',
14-
'vulcan:posts@1.5.0',
13+
'vulcan:core@1.6.0',
14+
'vulcan:posts@1.6.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: 'Vulcan file upload package.',
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

1212
api.use([
13-
'vulcan:posts@1.5.0',
14-
'vulcan:core@1.5.0'
13+
'vulcan:posts@1.6.0',
14+
'vulcan:core@1.6.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: "Vulcan comments package",
4-
version: '1.5.0',
4+
version: '1.6.0',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

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

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

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

0 commit comments

Comments
 (0)