Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 30d8867

Browse files
committed
2.3.0
1 parent ca92425 commit 30d8867

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
# 2.3.0 - 2015-12-16
2+
3+
- Added: we use latest version of pixrem(@^3)
4+
([19](https://github.com/cssnext/postcss-cssnext/pull/19))
5+
So now `rem` have
6+
[2 new parameters](https://github.com/robwierzbowski/node-pixrem#options):
7+
- ``rootValue`` to define the root element font-size manually
8+
- ``unitPrecision`` for rounded values
9+
10+
111
# 2.2.0 - 2015-10-21
212

3-
- Added [postcss-nesting](https://github.com/jonathantneal/postcss-nesting)
13+
- Added: [postcss-nesting](https://github.com/jonathantneal/postcss-nesting)
414
([#14](https://github.com/cssnext/postcss-cssnext/issues/14)).
515
Supports nesting via the `@nest` syntax. See postcss-nesting documentation.
616

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-cssnext",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Use tomorrow's CSS syntax, today",
55
"keywords": [
66
"css",

src/__tests__/fixtures/features/autoprefixer.expected.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
* {
22
-webkit-transition: -webkit-transform 1s;
3-
transition: transform 1s;
3+
transition: -webkit-transform 1s;
4+
transition: transform 1s;
5+
transition: transform 1s, -webkit-transform 1s;
46
}
57

68
@-webkit-keyframes spin {

0 commit comments

Comments
 (0)