Skip to content

Commit f43436b

Browse files
committed
bump to nova 1.2.0
1 parent d1d4e3c commit f43436b

File tree

29 files changed

+123
-123
lines changed

29 files changed

+123
-123
lines changed

.meteor/versions

+24-24
Original file line numberDiff line numberDiff line change
@@ -57,30 +57,30 @@ [email protected]
5757
5858
5959
60-
nova:api@1.1.0
61-
nova:base-components@1.1.0
62-
nova:base-styles@1.1.0
63-
nova:categories@1.1.0
64-
nova:comments@1.1.0
65-
nova:core@1.1.0
66-
nova:debug@1.1.0
67-
nova:email@1.1.0
68-
nova:email-templates@1.1.0
69-
nova:embedly@1.1.0
70-
nova:events@1.1.0
71-
nova:forms@1.1.0
72-
nova:getting-started@1.1.0
73-
nova:i18n-en-us@1.1.0
74-
nova:lib@1.1.0
75-
nova:newsletter@1.1.0
76-
nova:notifications@1.1.0
77-
nova:posts@1.1.0
78-
nova:routing@1.1.0
79-
nova:rss@1.1.0
80-
nova:search@1.1.0
81-
nova:subscribe@1.1.0
82-
nova:users@1.1.0
83-
nova:voting@1.1.0
60+
nova:api@1.2.0
61+
nova:base-components@1.2.0
62+
nova:base-styles@1.2.0
63+
nova:categories@1.2.0
64+
nova:comments@1.2.0
65+
nova:core@1.2.0
66+
nova:debug@1.2.0
67+
nova:email@1.2.0
68+
nova:email-templates@1.2.0
69+
nova:embedly@1.2.0
70+
nova:events@1.2.0
71+
nova:forms@1.2.0
72+
nova:getting-started@1.2.0
73+
nova:i18n-en-us@1.2.0
74+
nova:lib@1.2.0
75+
nova:newsletter@1.2.0
76+
nova:notifications@1.2.0
77+
nova:posts@1.2.0
78+
nova:routing@1.2.0
79+
nova:rss@1.2.0
80+
nova:search@1.2.0
81+
nova:subscribe@1.2.0
82+
nova:users@1.2.0
83+
nova:voting@1.2.0
8484
8585
8686

package.json

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

packages/nova-api/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package.describe({
22
name: "nova:api",
33
summary: "Telescope API package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

88
Package.onUse(function (api) {
99

1010
api.versionsFrom(['[email protected]']);
1111

12-
api.use(['nova:core@1.1.0']);
12+
api.use(['nova:core@1.2.0']);
1313

1414
api.mainModule("lib/server.js", "server");
1515
// api.mainModule("lib/client.js", "client");

packages/nova-base-components/package.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:base-components",
33
summary: "Telescope components package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
1313
// Nova packages
14-
'nova:core@1.1.0',
15-
'nova:posts@1.1.0',
16-
'nova:users@1.1.0',
17-
'nova:comments@1.1.0',
18-
'nova:voting@1.1.0',
14+
'nova:core@1.2.0',
15+
'nova:posts@1.2.0',
16+
'nova:users@1.2.0',
17+
'nova:comments@1.2.0',
18+
'nova:voting@1.2.0',
1919

2020
// third-party packages
2121
'fortawesome:[email protected]',

packages/nova-base-styles/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:base-styles",
33
summary: "Nova basic styles package",
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:core@1.1.0',
13+
'nova:core@1.2.0',
1414
'fourseven:scss',
1515
]);
1616

packages/nova-categories/package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:categories",
33
summary: "Telescope tags package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/telescope-tags.git"
66
});
77

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

1212
api.use([
13-
'nova:core@1.1.0',
14-
'nova:posts@1.1.0',
15-
'nova:users@1.1.0'
13+
'nova:core@1.2.0',
14+
'nova:posts@1.2.0',
15+
'nova:users@1.2.0'
1616
]);
1717

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

packages/nova-cloudinary/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'nova:cloudinary',
33
summary: 'Telescope file upload package.',
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:posts@1.1.0',
14-
'nova:core@1.1.0'
13+
'nova:posts@1.2.0',
14+
'nova:core@1.2.0'
1515
]);
1616

1717
api.addFiles([

packages/nova-comments/package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:comments",
33
summary: "Telescope comments package",
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:core@1.1.0',
14-
'nova:posts@1.1.0',
15-
'nova:users@1.1.0'
13+
'nova:core@1.2.0',
14+
'nova:posts@1.2.0',
15+
'nova:users@1.2.0'
1616
]);
1717

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

packages/nova-core/package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:core",
33
summary: "Telescope core package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'nova:lib@1.1.0',
14-
'nova:users@1.1.0',
13+
'nova:lib@1.2.0',
14+
'nova:users@1.2.0',
1515
]);
1616

1717
api.imply([
18-
'nova:lib@1.1.0'
18+
'nova:lib@1.2.0'
1919
]);
2020

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

packages/nova-debug/package.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:debug",
33
summary: "Telescope debug package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1616
// Nova packages
1717

18-
'nova:core@1.1.0',
19-
'nova:posts@1.1.0',
20-
'nova:users@1.1.0',
21-
'nova:email@1.1.0',
22-
'nova:comments@1.1.0'
18+
'nova:core@1.2.0',
19+
'nova:posts@1.2.0',
20+
'nova:users@1.2.0',
21+
'nova:email@1.2.0',
22+
'nova:comments@1.2.0'
2323

2424
]);
2525

packages/nova-email-templates/package.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:email-templates",
33
summary: "Telescope email templates package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/Telescope.git"
66
});
77

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

1212
api.use([
13-
'nova:core@1.1.0',
14-
'nova:posts@1.1.0',
15-
'nova:users@1.1.0',
16-
'nova:comments@1.1.0',
17-
'nova:email@1.1.0'
13+
'nova:core@1.2.0',
14+
'nova:posts@1.2.0',
15+
'nova:users@1.2.0',
16+
'nova:comments@1.2.0',
17+
'nova:email@1.2.0'
1818
]);
1919

2020
api.addFiles([

packages/nova-email/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:email",
33
summary: "Telescope email package",
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:lib@1.1.0'
13+
'nova:lib@1.2.0'
1414
]);
1515

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

packages/nova-embedly/package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:embedly",
33
summary: "Telescope Embedly module package",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
66
});
77

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

1212
api.use([
13-
'nova:core@1.1.0',
14-
'nova:posts@1.1.0',
15-
'nova:users@1.1.0',
13+
'nova:core@1.2.0',
14+
'nova:posts@1.2.0',
15+
'nova:users@1.2.0',
1616
'fourseven:scss'
1717
]);
1818

packages/nova-events/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:events",
33
summary: "Telescope event tracking package",
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:core@1.1.0',
14-
'nova:posts@1.1.0', // needed to track posts click
13+
'nova:core@1.2.0',
14+
'nova:posts@1.2.0', // needed to track posts click
1515
]);
1616

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

packages/nova-forms-tags/package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:forms-tags",
33
summary: "Telescope tag input package",
4-
version: "1.1.0",
4+
version: "1.2.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-
'nova:core@1.1.0',
14-
'nova:forms@1.1.0'
13+
'nova:core@1.2.0',
14+
'nova:forms@1.2.0'
1515
]);
1616

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

packages/nova-forms/package.js

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

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

1212
api.use([
13-
'nova:core@1.1.0',
14-
'nova:users@1.1.0',
13+
'nova:core@1.2.0',
14+
'nova:users@1.2.0',
1515

1616
'ecmascript',
1717
'check',

packages/nova-getting-started/package.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "nova:getting-started",
33
summary: "Getting started posts",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
66
});
77

@@ -14,11 +14,11 @@ Package.onUse(function (api) {
1414
api.versionsFrom(['[email protected]']);
1515

1616
api.use([
17-
'nova:core@1.1.0',
18-
'nova:posts@1.1.0',
19-
'nova:comments@1.1.0',
20-
'nova:users@1.1.0',
21-
'nova:events@1.1.0',
17+
'nova:core@1.2.0',
18+
'nova:posts@1.2.0',
19+
'nova:comments@1.2.0',
20+
'nova:users@1.2.0',
21+
'nova:events@1.2.0',
2222
]);
2323

2424
// both

0 commit comments

Comments
 (0)