Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated minimum Meteor version to 3.0-beta.0 #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

### v3.0.0
* Support to Meteor version from 3.0-beta.0

### v2.3.0
* Use Blaze's DOMBackend API. See: [#38](https://github.com/kadirahq/blaze-layout/pull/38)
* Display an error when there is no template. See: [#48](https://github.com/kadirahq/blaze-layout/pull/49)
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: 'Layout Manager for Blaze (works well with FlowRouter)',
version: '2.3.0',
version: '3.0.0',
git: 'https://github.com/kadirahq/blaze-layout',
name: "kadira:blaze-layout"
});
Expand All @@ -20,7 +20,7 @@ Package.onTest(function(api) {
});

function configure(api) {
api.versionsFrom('1.0');
api.versionsFrom('3.0-beta.0');
api.use('blaze');
api.use('templating');
api.use('reactive-dict');
Expand Down