Skip to content

Commit c065089

Browse files
committed
v1.11.1
1 parent b0e7c4b commit c065089

File tree

30 files changed

+73
-73
lines changed

30 files changed

+73
-73
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Vulcan
44

5-
[Version 1.11.0](https://github.com/VulcanJS/Vulcan/releases)
5+
[Version 1.11.1](https://github.com/VulcanJS/Vulcan/releases)
66

77
Vulcan is a React+GraphQL framework for Meteor.
88

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Vulcan",
3-
"version": "1.11.0",
3+
"version": "1.11.1",
44
"engines": {
55
"npm": "^3.0"
66
},

packages/vulcan-accounts/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'vulcan:accounts',
3-
version: '1.11.0',
3+
version: '1.11.1',
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.6.1');
1111

12-
api.use('vulcan:[email protected].0');
12+
api.use('vulcan:[email protected].1');
1313

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

packages/vulcan-admin/package.js

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

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

1919
]);
2020

packages/vulcan-cloudinary/package.js

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

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1'
1414
]);
1515

1616
api.mainModule("lib/client/main.js", "client");

packages/vulcan-core/package.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:core",
33
summary: "Vulcan core package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,15 +10,15 @@ Package.onUse(function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0',
15-
'vulcan:[email protected].0',
16-
'vulcan:[email protected].0',
17-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1',
15+
'vulcan:[email protected].1',
16+
'vulcan:[email protected].1',
17+
'vulcan:[email protected].1',
1818
]);
1919

2020
api.imply([
21-
'vulcan:[email protected].0'
21+
'vulcan:[email protected].1'
2222
]);
2323

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

packages/vulcan-debug/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:debug",
33
summary: "Vulcan debug package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git",
66
debugOnly: true
77
});
@@ -17,8 +17,8 @@ Package.onUse(function (api) {
1717

1818
// Vulcan packages
1919

20-
'vulcan:[email protected].0',
21-
'vulcan:[email protected].0',
20+
'vulcan:[email protected].1',
21+
'vulcan:[email protected].1',
2222

2323
]);
2424

packages/vulcan-email/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:email",
33
summary: "Vulcan email package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1'
1414
]);
1515

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

packages/vulcan-embed/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:embed",
33
summary: "Vulcan Embed package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: 'https://github.com/VulcanJS/Vulcan.git'
66
});
77

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

1212
api.use([
1313
'http',
14-
'vulcan:[email protected].0',
14+
'vulcan:[email protected].1',
1515
'fourseven:[email protected]'
1616
]);
1717

packages/vulcan-events-ga/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:events-ga",
33
summary: "Vulcan Google Analytics event tracking package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,8 +10,8 @@ Package.onUse(function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1',
1515
]);
1616

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

packages/vulcan-events-intercom/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'vulcan:events-intercom',
33
summary: 'Vulcan Intercom integration package.',
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,8 +10,8 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1'
1515
]);
1616

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

packages/vulcan-events-internal/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:events-internal",
33
summary: "Vulcan internal event tracking package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,8 +10,8 @@ Package.onUse(function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1',
1515
]);
1616

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

packages/vulcan-events-segment/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:events-segment",
33
summary: "Vulcan Segment",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,8 +10,8 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1',
1515
]);
1616

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

packages/vulcan-events/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:events",
33
summary: "Vulcan event tracking package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
1414
]);
1515

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

packages/vulcan-forms-tags/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:forms-tags",
33
summary: "Vulcan tag input package",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: 'https://github.com/VulcanJS/Vulcan.git'
66
});
77

@@ -10,8 +10,8 @@ Package.onUse( function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1'
1515
]);
1616

1717
api.mainModule("lib/export.js", ["client", "server"]);

packages/vulcan-forms-upload/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:forms-upload",
33
summary: "Vulcan package extending vulcan:forms to upload images to Cloudinary from a drop zone.",
4-
version: "1.11.0",
4+
version: "1.11.1",
55
git: 'https://github.com/xavcz/nova-forms-upload.git'
66
});
77

@@ -10,8 +10,8 @@ Package.onUse( function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
14-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
14+
'vulcan:[email protected].1',
1515
'fourseven:[email protected]'
1616
]);
1717

packages/vulcan-forms/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:forms",
33
summary: "Form containers for React",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/meteor-utilities/react-form-containers.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function(api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
1414

1515
'fourseven:[email protected]'
1616
]);

packages/vulcan-i18n-en-us/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:i18n-en-us",
33
summary: "Vulcan i18n package (en_US)",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1'
1414
]);
1515

1616
api.addFiles([

packages/vulcan-i18n-es-es/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:i18n-es-es",
33
summary: "Vulcan i18n package (es_ES)",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1'
1414
]);
1515

1616
api.addFiles([

packages/vulcan-i18n-fr-fr/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "vulcan:i18n-fr-fr",
33
summary: "Vulcan i18n package (fr_FR)",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan.git"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0'
13+
'vulcan:[email protected].1'
1414
]);
1515

1616
api.addFiles([

packages/vulcan-i18n/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'vulcan:i18n',
33
summary: "i18n client polyfill",
4-
version: '1.11.0',
4+
version: '1.11.1',
55
git: "https://github.com/VulcanJS/Vulcan"
66
});
77

@@ -10,7 +10,7 @@ Package.onUse(function (api) {
1010
api.versionsFrom('1.6.1');
1111

1212
api.use([
13-
'vulcan:[email protected].0',
13+
'vulcan:[email protected].1',
1414
]);
1515

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

packages/vulcan-lib/lib/modules/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import SimpleSchema from 'simpl-schema';
99
Vulcan = {};
1010

1111
// eslint-disable-next-line no-undef
12-
Vulcan.VERSION = '1.11.0';
12+
Vulcan.VERSION = '1.11.1';
1313

1414
// ------------------------------------- Schemas -------------------------------- //
1515

0 commit comments

Comments
 (0)