Skip to content

Commit

Permalink
v0.27.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xavxyz committed Nov 30, 2016
1 parent b100aed commit 41d19f5
Show file tree
Hide file tree
Showing 33 changed files with 127 additions and 129 deletions.
48 changes: 24 additions & 24 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -64,30 +64,30 @@ modules@0.7.7
modules-runtime@0.7.7
mongo@1.1.14
mongo-id@1.0.6
nova:api@0.27.4-nova
nova:base-components@0.27.4-nova
nova:base-routes@0.27.4-nova
nova:base-styles@0.27.4-nova
nova:categories@0.27.4-nova
nova:comments@0.27.4-nova
nova:core@0.27.4-nova
nova:debug@0.27.4-nova
nova:email@0.27.4-nova
nova:email-templates@0.27.4-nova
nova:embedly@0.27.4-nova
nova:events@0.27.4-nova
nova:forms@0.27.4-nova
nova:getting-started@0.27.4-nova
nova:i18n-en-us@0.27.4-nova
nova:lib@0.27.4-nova
nova:newsletter@0.27.4-nova
nova:notifications@0.27.4-nova
nova:posts@0.27.4-nova
nova:rss@0.27.4-nova
nova:search@0.27.4-nova
nova:settings@0.27.4-nova
nova:users@0.27.4-nova
nova:voting@0.27.4-nova
nova:api@0.27.5-nova
nova:base-components@0.27.5-nova
nova:base-routes@0.27.5-nova
nova:base-styles@0.27.5-nova
nova:categories@0.27.5-nova
nova:comments@0.27.5-nova
nova:core@0.27.5-nova
nova:debug@0.27.5-nova
nova:email@0.27.5-nova
nova:email-templates@0.27.5-nova
nova:embedly@0.27.5-nova
nova:events@0.27.5-nova
nova:forms@0.27.5-nova
nova:getting-started@0.27.5-nova
nova:i18n-en-us@0.27.5-nova
nova:lib@0.27.5-nova
nova:newsletter@0.27.5-nova
nova:notifications@0.27.5-nova
nova:posts@0.27.5-nova
nova:rss@0.27.5-nova
nova:search@0.27.5-nova
nova:settings@0.27.5-nova
nova:users@0.27.5-nova
nova:voting@0.27.5-nova
npm-bcrypt@0.9.2
npm-mongo@2.2.11_2
observe-sequence@1.0.14
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Telescope Nova

> It's the [Hacktoberfest](https://hacktoberfest.digitalocean.com/), support & celebrate open-source! [Browse our issues](https://github.com/TelescopeJS/Telescope/issues?q=is%3Aissue+is%3Aopen+label%3Ahacktoberfest) and come contribute!
There are currently two distinct versions of Telescope: **Nova** and **Legacy**.

**Nova** is the new, React-based version and all development will happen on this version going forward. It's used by the [master](https://github.com/TelescopeJS/Telescope/tree/master) and [devel](https://github.com/TelescopeJS/Telescope/tree/devel) branches.
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": "0.27.4",
"version": "0.27.5",
"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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Package.onUse(function (api) {

api.versionsFrom(['METEOR@1.0']);

api.use(['nova:core@0.27.4-nova']);
api.use(['nova:core@0.27.5-nova']);

api.mainModule("lib/server.js", "server");
// api.mainModule("lib/client.js", "client");
Expand Down
10 changes: 5 additions & 5 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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});

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

api.use([
// Nova packages
'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova',
'nova:comments@0.27.4-nova',
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova',
'nova:comments@0.27.5-nova',

// third-party packages
'fortawesome:fontawesome@4.5.0',
Expand Down
10 changes: 5 additions & 5 deletions packages/nova-base-routes/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "nova:base-routes",
summary: "Nova routes package",
version: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});

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

// Nova packages

'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova',
'nova:comments@0.27.4-nova',
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova',
'nova:comments@0.27.5-nova',

// third-party packages

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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'nova:core@0.27.4-nova',
'nova:core@0.27.5-nova',
'fourseven:scss',
// 'juliancwirko:postcss@1.0.0-rc.4',
// 'seba:minifiers-autoprefixer@0.0.1',
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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope-tags.git"
});

Expand All @@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");

api.use([
'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova'
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova'
]);

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: '0.27.4-nova',
version: '0.27.5-nova',
git: "https://github.com/TelescopeJS/Telescope.git"
});

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

api.use([
'nova:posts@0.27.4-nova',
'nova:core@0.27.4-nova'
'nova:posts@0.27.5-nova',
'nova:core@0.27.5-nova'
]);

api.use([
Expand Down
14 changes: 7 additions & 7 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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,15 +10,15 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);

api.use([
'nova:lib@0.27.4-nova',
'nova:settings@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova'
'nova:lib@0.27.5-nova',
'nova:settings@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova'
]);

api.use([
'nova:notifications@0.27.4-nova',
'nova:email@0.27.4-nova'
'nova:notifications@0.27.5-nova',
'nova:email@0.27.5-nova'
], ['client', 'server'], {weak: true});

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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,12 +10,12 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");

api.use([
'nova:lib@0.27.4-nova',
'nova:events@0.27.4-nova'
'nova:lib@0.27.5-nova',
'nova:events@0.27.5-nova'
]);

api.imply([
'nova:lib@0.27.4-nova'
'nova:lib@0.27.5-nova'
]);

api.mainModule("lib/server.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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});

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

// Nova packages

'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova',
'nova:email@0.27.4-nova',
'nova:comments@0.27.4-nova'
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova',
'nova:email@0.27.5-nova',
'nova:comments@0.27.5-nova'

]);

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

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

// Nova packages

'nova:core@0.27.4-nova',
'nova:core@0.27.5-nova',
'utilities:react-list-container@0.1.10',
'utilities:smart-publications@0.1.4',

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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});

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

api.use([
'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova',
'nova:comments@0.27.4-nova',
'nova:email@0.27.4-nova'
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova',
'nova:comments@0.27.5-nova',
'nova:email@0.27.5-nova'
]);

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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/telescope-email.git"
});

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

api.use([
'nova:core@0.27.4-nova'
'nova:core@0.27.5-nova'
]);

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: "0.27.4-nova",
version: "0.27.5-nova",
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
});

Expand All @@ -10,9 +10,9 @@ Package.onUse( function(api) {
api.versionsFrom("METEOR@1.0");

api.use([
'nova:core@0.27.4-nova',
'nova:posts@0.27.4-nova',
'nova:users@0.27.4-nova',
'nova:core@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova',
'fourseven:scss'
]);

Expand Down
4 changes: 2 additions & 2 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: "0.27.4-nova",
version: "0.27.5-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});

Expand All @@ -10,7 +10,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");

api.use([
'nova:lib@0.27.4-nova'
'nova:lib@0.27.5-nova'
]);

api.mainModule("lib/server.js", "server");
Expand Down
Loading

0 comments on commit 41d19f5

Please sign in to comment.