Skip to content

Commit 4cc86b2

Browse files
authored
Merge pull request #119 from ncoden/release/v2.0.1
🚀 Release v2.0.1
2 parents d6e0661 + e10d4cc commit 4cc86b2

8 files changed

+151
-151
lines changed

.versions

-15
This file was deleted.

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
# 2.0.1 (10 June 2018)
4+
5+
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.
6+
7+
## 📄 Changes
8+
* 🐛 eaf0971 - Add missing source files to Meteor `package.js` (@ncoden)
9+
* 🐛 6059743 - Unpin Meteor fourseven for a better Meteor compatibility (@ncoden)
10+
* 💻 98a6f9c - Remove outdated Meteor lockfile (@ncoden)
11+
* 💻 9fdcbac - Update Lockfiles (@ncoden)
12+
313
# 2.0.0 (25 May 2018)
414

515
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.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "motion-ui",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"authors": [
55
66
],

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zurb/motion-ui",
33
"description": "Sass library for creating transitions and animations.",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"keywords": [
66
"css",
77
"sass",

package-lock.json

+53-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
Package.describe({
22
name: 'zurb:motion-ui',
3-
version: '2.0.0',
3+
version: '2.0.1',
44
summary: 'Sass library for creating transitions and animations',
55
git: 'https://github.com/zurb/motion-ui.git',
66
documentation: 'meteor-README.md'
77
});
88

99
Package.onUse(function(api) {
1010
api.versionsFrom('1.2.1');
11-
api.imply('fourseven:scss@3.4.1');
12-
api.use(['ecmascript', 'jquery', 'fourseven:scss@3.4.1'], 'client');
11+
api.imply('fourseven:scss');
12+
api.use(['ecmascript', 'jquery', 'fourseven:scss'], 'client');
1313
api.addFiles('dist/motion-ui.js', 'client');
1414
api.addFiles([
1515
'src/_settings.scss',
1616
'src/util/_animation.scss',
1717
'src/util/_args.scss',
18+
'src/util/_function.scss',
1819
'src/util/_keyframe.scss',
1920
'src/util/_selector.scss',
2021
'src/util/_series.scss',
22+
'src/util/_string.scss',
2123
'src/util/_transition.scss',
2224
'src/util/_unit.scss',
2325
'src/effects/_fade.scss',

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "motion-ui",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Sass library for creating transitions and animations.",
55
"main": "dist/motion-ui.js",
66
"scripts": {

0 commit comments

Comments
 (0)