Skip to content

Commit f81fb37

Browse files
committed
4.1.0
1 parent b593011 commit f81fb37

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 4.1.0 - 2019-04-01
2+
3+
- Added: `preserveCustomProps` option to preserve custom properties
4+
- Updated: `postcss` to 6.0.23 (patch)
5+
- Updated: `postcss-value-parser` to 3.3.1 (patch)
6+
17
# 4.0.1 - 2017-11-03
28

39
- Fixed: bug when using the `tint`, `shade`, and `contrast` adjusters along with the `alpha` adjuster

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# postcss-color-function [![Build Status](https://travis-ci.org/postcss/postcss-color-function.svg)](https://travis-ci.org/postcss/postcss-color-function)
22

3-
> [PostCSS](https://github.com/postcss/postcss) plugin to transform CSS color function from editor draft of 'Color Module Level 4' specification to more compatible CSS.
3+
[PostCSS](https://github.com/postcss/postcss) plugin to transform CSS color function from editor draft of 'Color Module Level 4' specification to more compatible CSS.
4+
5+
## Deprecated
46

57
**⚠️ `color()` was changed to `color-mod()`. See [postcss-color-mod-function](https://github.com/jonathantneal/postcss-color-mod-function).**
68

9+
> There is a
10+
[`color-mod`](https://github.com/jonathantneal/postcss-color-mod-function)
11+
implementation.
12+
713
**⚠️ `color-mod()` has been removed from [Color Module Level 4 specification](https://www.w3.org/TR/css-color-4/#changes-from-20160705).**
814

915
## Installation

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-color-function",
3-
"version": "4.0.1",
3+
"version": "4.1.0",
44
"description": "PostCSS plugin to transform W3C CSS color function to more compatible CSS.",
55
"keywords": [
66
"css",
@@ -18,9 +18,9 @@
1818
],
1919
"dependencies": {
2020
"css-color-function": "~1.3.3",
21-
"postcss": "^6.0.1",
21+
"postcss": "^6.0.23",
2222
"postcss-message-helpers": "^2.0.0",
23-
"postcss-value-parser": "^3.3.0"
23+
"postcss-value-parser": "^3.3.1"
2424
},
2525
"devDependencies": {
2626
"eslint": "^3.19.0",

0 commit comments

Comments
 (0)