Skip to content

Commit 441b125

Browse files
committed
Tag v2.1.0
1 parent f84afa8 commit 441b125

File tree

3 files changed

+38
-34
lines changed

3 files changed

+38
-34
lines changed

History.md

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,81 @@
11
# Release History
22

3+
## v2.1.0 / 2021-05-02
4+
5+
* Fix unexpected flipping in selectors with the general sibling combinator (Mainframe98, [#85](https://github.com/cssjanus/cssjanus/issues/85)).
6+
37
## v2.0.0 / 2020-08-23
48

59
Node.js 10 or later is required.
610

7-
* Fix unexpected flipping in certain cases involving double quotes or comments in selectors (YairRand, [#35](https://github.com/cssjanus/cssjanus/issues/35))
8-
* Drop support for Node.js 6 and 8 (Timo Tijhof)
11+
* Fix unexpected flipping in certain cases involving double quotes or comments in selectors (YairRand, [#35](https://github.com/cssjanus/cssjanus/issues/35)).
12+
* Drop support for Node.js 6 and 8 (Timo Tijhof).
913

1014
## v1.3.2 / 2019-05-10
1115

12-
* test: Add a large test case to catch backtrack limit problem (James Forrester)
13-
* Document a known backtrack issue, not yet known to affect Node.js (Timo Tijhof)
16+
* test: Add a large test case to catch backtrack limit problem (James Forrester).
17+
* Document a known backtrack issue, not yet known to affect Node.js (Timo Tijhof).
1418

1519
## v1.3.1 / 2018-10-15
1620

17-
* Fix bug where `transform` didn't flip on lines without semicolon (YairRand)
21+
* Fix bug where `transform` didn't flip on lines without semicolon (YairRand).
1822

1923
## v1.3.0 / 2018-07-03
2024

21-
* Fix unintended flipping of selectors containing a backslash (YairRand)
22-
* Make cssjanus.js compatible with Closure Compiler (Chris Scribner)
23-
* Drop support for Node.js 4; This release requires Node 6 (Timo Tijhof)
25+
* Fix unintended flipping of selectors containing a backslash (YairRand).
26+
* Make cssjanus.js compatible with Closure Compiler (Chris Scribner).
27+
* Drop support for Node.js 4; This release requires Node 6 (Timo Tijhof).
2428

2529
## v1.2.2 / 2018-02-11
2630

27-
* build: Add 'files' publishing whitelist to package.json (Timo Tijhof)
31+
* build: Add 'files' publishing whitelist to package.json (Timo Tijhof).
2832

2933
## v1.2.1 / 2017-10-23
3034

31-
* Drop support for Node.js v0.10 and v0.12 (Timo Tijhof)
32-
* test: Cover border-radius with three values (Timo Tijhof)
35+
* Drop support for Node.js v0.10 and v0.12 (Timo Tijhof).
36+
* test: Cover border-radius with three values (Timo Tijhof).
3337

3438
## v1.2.0 / 2017-03-14
3539

36-
* Flip `translate(x[,y,z])` and `translateX(x)` (Ed Sanders)
40+
* Flip `translate(x[,y,z])` and `translateX(x)` (Ed Sanders).
3741

3842
## v1.1.3 / 2016-12-23
3943

40-
* Do not flip offset-y in text-shadow, even when color isn't as first value (Ed Sanders)
44+
* Do not flip offset-y in text-shadow, even when color isn't as first value (Ed Sanders).
4145

4246
## v1.1.2 / 2015-02-03
4347

44-
* Support !important and slash in border-radius values (Dominik Schilling)
48+
* Support !important and slash in border-radius values (Dominik Schilling).
4549

4650
## v1.1.1 / 2014-11-19
4751

48-
* Support !important in four-value declarations (Matthew Flaschen)
52+
* Support !important in four-value declarations (Matthew Flaschen).
4953

5054
## v1.1.0 / 2014-09-23
5155

52-
* Move repository to github.com/cssjanus (Timo Tijhof)
53-
* Drop support for node.js v0.8 (Timo Tijhof)
54-
* Correct documentation of calculateNewBorderRadius (Ed Sanders)
55-
* test: Convert test cases to JSON (Timo Tijhof)
56-
* Do not flip unknown properties starting with "left" or "right" (Timo Tijhof)
57-
* Do not flip five or more consecutive values (Timo Tijhof)
58-
* Support CSS3 rgb(a) and hsl(a) color notation (Timo Tijhof)
59-
* Flip text-shadow and box-shadow (Timo Tijhof)
60-
* Account for attribute selectors in open brace lookahead (Timo Tijhof)
61-
* Account for minified values in border-radius (Roan Kattouw)
62-
* Flip border-style (Timo Tijhof)
63-
* Account for decimals and lack of vertical value in background-position (Roan Kattouw)
56+
* Move repository to github.com/cssjanus (Timo Tijhof).
57+
* Drop support for node.js v0.8 (Timo Tijhof).
58+
* Correct documentation of calculateNewBorderRadius (Ed Sanders).
59+
* test: Convert test cases to JSON (Timo Tijhof).
60+
* Do not flip unknown properties starting with "left" or "right" (Timo Tijhof).
61+
* Do not flip five or more consecutive values (Timo Tijhof).
62+
* Support CSS3 rgb(a) and hsl(a) color notation (Timo Tijhof).
63+
* Flip text-shadow and box-shadow (Timo Tijhof).
64+
* Account for attribute selectors in open brace lookahead (Timo Tijhof).
65+
* Account for minified values in border-radius (Roan Kattouw).
66+
* Flip border-style (Timo Tijhof).
67+
* Account for decimals and lack of vertical value in background-position (Roan Kattouw).
6468

6569
## v1.0.2 / 2014-01-28
6670

67-
* Prevent issues with css selectors containing parentheses (Yoav Farhi)
68-
* Fix bgHorizontalPercentageRegExp to not be too greedy (Dion Hulse)
69-
* Support `/*!` syntax for @noflip (Tom Yam)
71+
* Prevent issues with css selectors containing parentheses (Yoav Farhi).
72+
* Fix bgHorizontalPercentageRegExp to not be too greedy (Dion Hulse).
73+
* Support `/*!` syntax for @noflip (Tom Yam).
7074

7175
## v1.0.1 / 2013-08-08
7276

73-
* Fix global variable leak (Trevor Parscal)
77+
* Fix global variable leak (Trevor Parscal).
7478

7579
## v1.0.0 / 2012-06-28
7680

77-
* Initial commit (Trevor Parscal)
81+
* Initial commit (Trevor Parscal).

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cssjanus",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"description": "Convert CSS stylesheets between left-to-right and right-to-left directions.",
55
"author": "Trevor Parscal <trevorparscal@gmail.com> (https://trevorparscal.com/)",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)