Skip to content

Commit 1e0d9e6

Browse files
committed
Merge branch 'develop'
2 parents 969f6c4 + ae564a2 commit 1e0d9e6

File tree

7 files changed

+33
-8
lines changed

7 files changed

+33
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
# 2.0.3 (23 June 2018)
4+
5+
This version makes Motion UI compatible with Meteor > 1.4.1 by allowing Meteor to use newer versions of the `fourseven:scss` dependency. Motion UI stays compatible with Meteor v1.2.1 and above.
6+
7+
## 📄 Changes
8+
* 🐛 #125 - Revise Meteor `fourseven:scss` compatibility to support Meteor>1.4.1 support (@ncoden)
9+
310
# 2.0.2 (13 June 2018)
411

512
This version fixes an issue introduced in `v2.0.1` preventing Meteor build and update Meteor installation documentation. It is fully compatible with `v2.0.1` and do not introduce any API change.

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.2",
3+
"version": "2.0.3",
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.2",
4+
"version": "2.0.3",
55
"keywords": [
66
"css",
77
"sass",

package-lock.json

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

package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package.describe({
22
name: 'zurb:motion-ui',
3-
version: '2.0.2',
3+
version: '2.0.3',
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:[email protected]');
12-
api.use(['ecmascript', 'jquery', 'fourseven:[email protected]'], 'client');
11+
api.imply('fourseven:[email protected] || 4.0.0');
12+
api.use(['ecmascript', 'jquery', 'fourseven:[email protected] || 4.0.0'], 'client');
1313
api.addFiles('dist/motion-ui.js', 'client');
1414
api.addFiles([
1515
'src/_settings.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.2",
3+
"version": "2.0.3",
44
"description": "Sass library for creating transitions and animations.",
55
"main": "dist/motion-ui.js",
66
"scripts": {

0 commit comments

Comments
 (0)