Skip to content

Commit fa992b2

Browse files
committed
2.0.1
1 parent 31cf782 commit fa992b2

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.0.1 - 2016-07-08
2+
3+
- Fixed: existing font-feature-settings being duplicated.
4+
([#8](https://github.com/postcss/postcss-font-variant/pull/8) - @ChaosExAnima)
5+
16
# 2.0.0 - 2015-09-08
27

38
- Added: compatibility with postcss v5.x
@@ -6,12 +11,12 @@
611
# 1.2.0 - 2015-08-13
712

813
- Added: compatibility with postcss v4.1.x
9-
([#5](https://github.com/postcss/postcss-font-variant/pull/5))
14+
([#5](https://github.com/postcss/postcss-font-variant/pull/5))
1015

1116
# 1.1.0 - 2015-01-29
1217

13-
- Fixed: Properly handle font-variant-position:normal ([#3](https://github.com/postcss/postcss-font-variant/pull/3))
14-
- Added: support font-kerning ([#2](https://github.com/postcss/postcss-font-variant/pull/2))
18+
- Fixed: Properly handle font-variant-position:normal ([#3](https://github.com/postcss/postcss-font-variant/pull/3))
19+
- Added: support font-kerning ([#2](https://github.com/postcss/postcss-font-variant/pull/2))
1520

1621
# 1.0.2 - 2015-01-27
1722

package.json

100755100644
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-font-variant",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)",
55
"keywords": [
66
"css",
@@ -25,12 +25,14 @@
2525
"devDependencies": {
2626
"jscs": "^2.1.0",
2727
"jshint": "^2.8.0",
28+
"npmpub": "^3.1.0",
2829
"tape": "^4.0.3"
2930
},
3031
"scripts": {
3132
"lint": "npm run jscs && npm run jshint",
3233
"jscs": "jscs index.js test/index.js",
3334
"jshint": "jshint . --exclude-path .gitignore",
34-
"test": "npm run lint && tape test"
35+
"test": "npm run lint && tape test",
36+
"release": "npmpub"
3537
}
3638
}

0 commit comments

Comments
 (0)