Skip to content

Commit 8a902dc

Browse files
committed
2.0.2
1 parent 9949a6d commit 8a902dc

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1+
# 2.0.2 - 2016-09-06
2+
3+
- Fixed: .class:matches(element) now produce element.class
4+
([#8](https://github.com/postcss/postcss-selector-matches/pull/8) - @yordis)
5+
16
# 2.0.1 - 2015-10-26
7+
28
- Fixed: pseudo selectors with multiple matches in a selector
39

410
# 2.0.0 - 2015-08-25

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-selector-matches",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "PostCSS plugin to transform :matches() W3C CSS pseudo class to more compatible CSS selectors",
55
"keywords": [
66
"postcss",
@@ -11,10 +11,7 @@
1111
],
1212
"author": "Maxime Thirouin",
1313
"license": "MIT",
14-
"repository": {
15-
"type": "git",
16-
"url": "https://github.com/postcss/postcss-selector-matches.git"
17-
},
14+
"repository": "https://github.com/postcss/postcss-selector-matches.git",
1815
"main": "dist/index.js",
1916
"files": [
2017
"dist"
@@ -29,12 +26,14 @@
2926
"babel-preset-stage-2": "^6.13.0",
3027
"babel-tape-runner": "^2.0.1",
3128
"eslint": "^3.4.0",
29+
"npmpub": "^3.1.0",
3230
"tape": "^4.0.0"
3331
},
3432
"scripts": {
3533
"lint": "eslint .",
3634
"tape": "babel-tape-runner 'test/*.js'",
3735
"test": "npm run lint && npm run tape",
38-
"prepublish": "babel src --out-dir dist"
36+
"prepublish": "babel src --out-dir dist",
37+
"release": "npmpub"
3938
}
4039
}

0 commit comments

Comments
 (0)