@csstools/css-color-parser 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -9
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changes to CSS Color Parser
2
2
 
3
+ ### 2.0.4
4
+
5
+ _July 6, 2024_
6
+
7
+ - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.4.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#241) (patch)
8
+ - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.7.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#271) (patch)
9
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.2.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#124) (patch)
10
+
3
11
  ### 2.0.3
4
12
 
5
13
  _June 29, 2024_
@@ -17,13 +25,4 @@ _May 4, 2024_
17
25
  - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.6.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#263) (patch)
18
26
  - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.2.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#122) (patch)
19
27
 
20
- ### 2.0.1
21
-
22
- _May 4, 2024_
23
-
24
- - Improve handling of `NaN` and `Infinity` in color functions.
25
- - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.3.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#230) (minor)
26
- - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.6.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#262) (patch)
27
- - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.2.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#121) (patch)
28
-
29
28
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/css-color-parser",
3
3
  "description": "Parse CSS color values",
4
- "version": "2.0.3",
4
+ "version": "2.0.4",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -49,11 +49,11 @@
49
49
  ],
50
50
  "dependencies": {
51
51
  "@csstools/color-helpers": "^4.2.1",
52
- "@csstools/css-calc": "^1.2.3"
52
+ "@csstools/css-calc": "^1.2.4"
53
53
  },
54
54
  "peerDependencies": {
55
- "@csstools/css-parser-algorithms": "^2.7.0",
56
- "@csstools/css-tokenizer": "^2.3.2"
55
+ "@csstools/css-parser-algorithms": "^2.7.1",
56
+ "@csstools/css-tokenizer": "^2.4.1"
57
57
  },
58
58
  "scripts": {},
59
59
  "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme",