Skip to content

Commit 65077c0

Browse files
committed
2.3.0
1 parent 7133e87 commit 65077c0

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to PostCSS color-mod() Function
22

3+
### 2.3.0 (January 25, 2018)
4+
5+
- Updated `@csstools/convert-colors` to 1.3 (minor update)
6+
- Updated tests to reflect more accurate color conversions
7+
38
### 2.2.0 (January 22, 2018)
49

510
- Added `@csstools/convert-colors` to convert between color spaces

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-color-mod-function",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Modify colors using the color-mod() function in CSS",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
@@ -26,7 +26,7 @@
2626
"node": ">=4.0.0"
2727
},
2828
"dependencies": {
29-
"@csstools/convert-colors": "^1.1",
29+
"@csstools/convert-colors": "^1.3",
3030
"postcss": "^6.0",
3131
"postcss-values-parser": "^1.3"
3232
},
@@ -39,7 +39,7 @@
3939
"eslint-config-dev": "2.0",
4040
"postcss-tape": "2.2",
4141
"pre-commit": "^1.2",
42-
"rollup": "^0.54",
42+
"rollup": "^0.55",
4343
"rollup-plugin-babel": "^3.0"
4444
},
4545
"eslintConfig": {

test/basic.expect.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ test-lightness-saturation-adjuster {
7070
}
7171

7272
test-blackness-whiteness-adjuster {
73-
color: rgb(204, 204, 204);
74-
color: rgb(194, 194, 194);
73+
color: rgb(204, 204, 220);
74+
color: rgb(194, 194, 220);
7575
color: rgb(248, 248, 220);
76-
color: rgb(55, 55, 55);
76+
color: rgb(55, 55, 220);
7777
color: rgb(245, 245, 51);
7878
color: rgb(245, 245, 223);
7979
color: rgb(245, 245, 169);
@@ -106,7 +106,7 @@ test-contrast-adjuster {
106106
}
107107

108108
test-combination-adjuster {
109-
color: rgb(178, 77, 119);
109+
color: rgb(179, 77, 119);
110110
}
111111

112112
test-sameness {

0 commit comments

Comments
 (0)