Skip to content

Commit

Permalink
Merge pull request #119 from ncoden/release/v2.0.1
Browse files Browse the repository at this point in the history
🚀  Release v2.0.1
  • Loading branch information
ncoden authored Jun 11, 2018
2 parents d6e0661 + e10d4cc commit 4cc86b2
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 151 deletions.
15 changes: 0 additions & 15 deletions .versions

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

# 2.0.1 (10 June 2018)

This version fixes various issues with the Meteor `zurb:motion-ui` package. It is fully compatible with `v2.0.0` and do not introduce any API change.

## 📄 Changes
* 🐛 eaf0971 - Add missing source files to Meteor `package.js` (@ncoden)
* 🐛 6059743 - Unpin Meteor fourseven for a better Meteor compatibility (@ncoden)
* 💻 98a6f9c - Remove outdated Meteor lockfile (@ncoden)
* 💻 9fdcbac - Update Lockfiles (@ncoden)

# 2.0.0 (25 May 2018)

We're happy to release Motion UI 2.0 with a better support of macOS Safari, API improvements, some bug fixes and various maintanance stuff. Warning: this release includes breaking changes, please read the migration notes below before upgrading.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "motion-ui",
"version": "2.0.0",
"version": "2.0.1",
"authors": [
"ZURB <foundation@zurb.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zurb/motion-ui",
"description": "Sass library for creating transitions and animations.",
"version": "2.0.0",
"version": "2.0.1",
"keywords": [
"css",
"sass",
Expand Down
82 changes: 53 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
Package.describe({
name: 'zurb:motion-ui',
version: '2.0.0',
version: '2.0.1',
summary: 'Sass library for creating transitions and animations',
git: 'https://github.com/zurb/motion-ui.git',
documentation: 'meteor-README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.imply('fourseven:scss@3.4.1');
api.use(['ecmascript', 'jquery', 'fourseven:scss@3.4.1'], 'client');
api.imply('fourseven:scss');
api.use(['ecmascript', 'jquery', 'fourseven:scss'], 'client');
api.addFiles('dist/motion-ui.js', 'client');
api.addFiles([
'src/_settings.scss',
'src/util/_animation.scss',
'src/util/_args.scss',
'src/util/_function.scss',
'src/util/_keyframe.scss',
'src/util/_selector.scss',
'src/util/_series.scss',
'src/util/_string.scss',
'src/util/_transition.scss',
'src/util/_unit.scss',
'src/effects/_fade.scss',
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": "motion-ui",
"version": "2.0.0",
"version": "2.0.1",
"description": "Sass library for creating transitions and animations.",
"main": "dist/motion-ui.js",
"scripts": {
Expand Down
Loading

0 comments on commit 4cc86b2

Please sign in to comment.