Skip to content

Commit

Permalink
bump to nova 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xavxyz committed Mar 8, 2017
1 parent d1d4e3c commit f43436b
Show file tree
Hide file tree
Showing 29 changed files with 123 additions and 123 deletions.
48 changes: 24 additions & 24 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -57,30 +57,30 @@ [email protected]
[email protected]
[email protected]
[email protected]
nova:api@1.1.0
nova:base-components@1.1.0
nova:base-styles@1.1.0
nova:categories@1.1.0
nova:comments@1.1.0
nova:core@1.1.0
nova:debug@1.1.0
nova:email@1.1.0
nova:email-templates@1.1.0
nova:embedly@1.1.0
nova:events@1.1.0
nova:forms@1.1.0
nova:getting-started@1.1.0
nova:i18n-en-us@1.1.0
nova:lib@1.1.0
nova:newsletter@1.1.0
nova:notifications@1.1.0
nova:posts@1.1.0
nova:routing@1.1.0
nova:rss@1.1.0
nova:search@1.1.0
nova:subscribe@1.1.0
nova:users@1.1.0
nova:voting@1.1.0
nova:api@1.2.0
nova:base-components@1.2.0
nova:base-styles@1.2.0
nova:categories@1.2.0
nova:comments@1.2.0
nova:core@1.2.0
nova:debug@1.2.0
nova:email@1.2.0
nova:email-templates@1.2.0
nova:embedly@1.2.0
nova:events@1.2.0
nova:forms@1.2.0
nova:getting-started@1.2.0
nova:i18n-en-us@1.2.0
nova:lib@1.2.0
nova:newsletter@1.2.0
nova:notifications@1.2.0
nova:posts@1.2.0
nova:routing@1.2.0
nova:rss@1.2.0
nova:search@1.2.0
nova:subscribe@1.2.0
nova:users@1.2.0
nova:voting@1.2.0
[email protected]
[email protected]_1
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Nova",
"version": "1.1.0",
"version": "1.2.0",
"engines": {
"npm": "^3.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/nova-api/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "nova:api",
summary: "Telescope API package",
version: "1.1.0",
version: "1.2.0",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Package.onUse(function (api) {

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

api.use(['nova:core@1.1.0']);
api.use(['nova:core@1.2.0']);

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

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

api.use([
// Nova packages
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0',
'nova:comments@1.1.0',
'nova:voting@1.1.0',
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0',
'nova:comments@1.2.0',
'nova:voting@1.2.0',

// third-party packages
'fortawesome:[email protected]',
Expand Down
4 changes: 2 additions & 2 deletions packages/nova-base-styles/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "nova:base-styles",
summary: "Nova basic styles package",
version: "1.1.0",
version: "1.2.0",
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'nova:core@1.1.0',
'nova:core@1.2.0',
'fourseven:scss',
]);

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

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0'
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0'
]);

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

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

api.use([
'nova:posts@1.1.0',
'nova:core@1.1.0'
'nova:posts@1.2.0',
'nova:core@1.2.0'
]);

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

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0'
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0'
]);

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

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

api.use([
'nova:lib@1.1.0',
'nova:users@1.1.0',
'nova:lib@1.2.0',
'nova:users@1.2.0',
]);

api.imply([
'nova:lib@1.1.0'
'nova:lib@1.2.0'
]);

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

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

// Nova packages

'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0',
'nova:email@1.1.0',
'nova:comments@1.1.0'
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0',
'nova:email@1.2.0',
'nova:comments@1.2.0'

]);

Expand Down
12 changes: 6 additions & 6 deletions packages/nova-email-templates/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "nova:email-templates",
summary: "Telescope email templates package",
version: "1.1.0",
version: "1.2.0",
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0',
'nova:comments@1.1.0',
'nova:email@1.1.0'
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0',
'nova:comments@1.2.0',
'nova:email@1.2.0'
]);

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

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

api.use([
'nova:lib@1.1.0'
'nova:lib@1.2.0'
]);

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

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:users@1.1.0',
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0',
'fourseven:scss'
]);

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

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0', // needed to track posts click
'nova:core@1.2.0',
'nova:posts@1.2.0', // needed to track posts click
]);

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

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

api.use([
'nova:core@1.1.0',
'nova:forms@1.1.0'
'nova:core@1.2.0',
'nova:forms@1.2.0'
]);

api.mainModule("lib/export.js", ["client", "server"]);
Expand Down
6 changes: 3 additions & 3 deletions packages/nova-forms/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "nova:forms",
summary: "Form containers for React",
version: "1.1.0",
version: "1.2.0",
git: "https://github.com/meteor-utilities/react-form-containers.git"
});

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

api.use([
'nova:core@1.1.0',
'nova:users@1.1.0',
'nova:core@1.2.0',
'nova:users@1.2.0',

'ecmascript',
'check',
Expand Down
12 changes: 6 additions & 6 deletions packages/nova-getting-started/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "nova:getting-started",
summary: "Getting started posts",
version: "1.1.0",
version: "1.2.0",
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
});

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

api.use([
'nova:core@1.1.0',
'nova:posts@1.1.0',
'nova:comments@1.1.0',
'nova:users@1.1.0',
'nova:events@1.1.0',
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:comments@1.2.0',
'nova:users@1.2.0',
'nova:events@1.2.0',
]);

// both
Expand Down
Loading

0 comments on commit f43436b

Please sign in to comment.