@csstools/postcss-gradient-stop-increments-experimental 1.0.1 → 1.0.3

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 +21 -2
  2. package/package.json +14 -8
package/CHANGELOG.md CHANGED
@@ -1,11 +1,30 @@
1
1
  # Changes to PostCSS Gradient Stop Increments
2
2
 
3
- ### 1.0.1 (April 10, 2023)
3
+ ### 1.0.3
4
+
5
+ _July 24, 2023_
6
+
7
+ - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.2.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#220) (minor)
8
+ - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.3.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#231) (patch)
9
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.1.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#113) (patch)
10
+
11
+ ### 1.0.2
12
+
13
+ _July 3, 2023_
14
+
15
+ - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.3.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#230) (minor)
16
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.1.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#112) (patch)
17
+
18
+ ### 1.0.1
19
+
20
+ _April 10, 2023_
4
21
 
5
22
  - Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
6
23
  - Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
7
24
  - Updated `@csstools/css-calc` to `1.1.1` (patch)
8
25
 
9
- ### 1.0.0 (March 21, 2023)
26
+ ### 1.0.0
27
+
28
+ _March 21, 2023_
10
29
 
11
30
  - Initial version
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-gradient-stop-increments-experimental",
3
3
  "description": "Increment CSS gradient stops",
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -14,10 +14,16 @@
14
14
  }
15
15
  ],
16
16
  "license": "CC0-1.0",
17
- "funding": {
18
- "type": "opencollective",
19
- "url": "https://opencollective.com/csstools"
20
- },
17
+ "funding": [
18
+ {
19
+ "type": "github",
20
+ "url": "https://github.com/sponsors/csstools"
21
+ },
22
+ {
23
+ "type": "opencollective",
24
+ "url": "https://opencollective.com/csstools"
25
+ }
26
+ ],
21
27
  "engines": {
22
28
  "node": "^14 || ^16 || >=18"
23
29
  },
@@ -39,9 +45,9 @@
39
45
  "dist"
40
46
  ],
41
47
  "dependencies": {
42
- "@csstools/css-calc": "^1.1.1",
43
- "@csstools/css-parser-algorithms": "^2.1.1",
44
- "@csstools/css-tokenizer": "^2.1.1"
48
+ "@csstools/css-calc": "^1.1.3",
49
+ "@csstools/css-parser-algorithms": "^2.3.1",
50
+ "@csstools/css-tokenizer": "^2.2.0"
45
51
  },
46
52
  "peerDependencies": {
47
53
  "postcss": "^8.4"