Skip to content

Commit 31b2dc1

Browse files
committed
set dependencies to newly released versions
1 parent b845d70 commit 31b2dc1

File tree

25 files changed

+104
-48
lines changed

25 files changed

+104
-48
lines changed

cli/csstools-cli/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changes to CSSTools CLI
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/postcss-exponential-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions) to [`2.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions/CHANGELOG.md#206) (patch)
6+
- Updated [`@csstools/postcss-media-minmax`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax) to [`2.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax/CHANGELOG.md#206) (patch)
7+
- Updated [`@csstools/postcss-stepped-value-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions) to [`4.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions/CHANGELOG.md#406) (patch)
8+
- Updated [`@csstools/postcss-trigonometric-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions) to [`4.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions/CHANGELOG.md#406) (patch)
9+
310
### 4.0.12
411

512
_December 13, 2024_

cli/csstools-cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@csstools/postcss-color-function": "^4.0.6",
4343
"@csstools/postcss-color-mix-function": "^3.0.6",
4444
"@csstools/postcss-content-alt-text": "^2.0.4",
45-
"@csstools/postcss-exponential-functions": "^2.0.5",
45+
"@csstools/postcss-exponential-functions": "^2.0.6",
4646
"@csstools/postcss-font-format-keywords": "^4.0.0",
4747
"@csstools/postcss-gradients-interpolation-method": "^5.0.6",
4848
"@csstools/postcss-hwb-function": "^4.0.6",
@@ -52,16 +52,16 @@
5252
"@csstools/postcss-logical-float-and-clear": "^3.0.0",
5353
"@csstools/postcss-logical-resize": "^3.0.0",
5454
"@csstools/postcss-logical-viewport-units": "^3.0.3",
55-
"@csstools/postcss-media-minmax": "^2.0.5",
55+
"@csstools/postcss-media-minmax": "^2.0.6",
5656
"@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4",
5757
"@csstools/postcss-nested-calc": "^4.0.0",
5858
"@csstools/postcss-normalize-display-values": "^4.0.0",
5959
"@csstools/postcss-oklab-function": "^4.0.6",
6060
"@csstools/postcss-relative-color-syntax": "^3.0.6",
6161
"@csstools/postcss-scope-pseudo-class": "^4.0.1",
62-
"@csstools/postcss-stepped-value-functions": "^4.0.5",
62+
"@csstools/postcss-stepped-value-functions": "^4.0.6",
6363
"@csstools/postcss-text-decoration-shorthand": "^4.0.1",
64-
"@csstools/postcss-trigonometric-functions": "^4.0.5",
64+
"@csstools/postcss-trigonometric-functions": "^4.0.6",
6565
"@csstools/postcss-unset-value": "^4.0.0",
6666
"css-blank-pseudo": "^7.0.1",
6767
"css-has-pseudo": "^7.0.2",

package-lock.json

+28-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin-packs/postcss-preset-env/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changes to PostCSS Preset Env
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/postcss-exponential-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions) to [`2.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions/CHANGELOG.md#206) (patch)
6+
- Updated [`@csstools/postcss-media-minmax`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax) to [`2.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax/CHANGELOG.md#206) (patch)
7+
- Updated [`@csstools/postcss-random-function`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-random-function) to [`1.0.2`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-random-function/CHANGELOG.md#102) (patch)
8+
- Updated [`@csstools/postcss-sign-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-sign-functions) to [`1.1.1`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-sign-functions/CHANGELOG.md#111) (patch)
9+
- Updated [`@csstools/postcss-stepped-value-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions) to [`4.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions/CHANGELOG.md#406) (patch)
10+
- Updated [`@csstools/postcss-trigonometric-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions) to [`4.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions/CHANGELOG.md#406) (patch)
11+
312
### 10.1.2
413

514
_December 13, 2024_

plugin-packs/postcss-preset-env/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@csstools/postcss-color-function": "^4.0.6",
5757
"@csstools/postcss-color-mix-function": "^3.0.6",
5858
"@csstools/postcss-content-alt-text": "^2.0.4",
59-
"@csstools/postcss-exponential-functions": "^2.0.5",
59+
"@csstools/postcss-exponential-functions": "^2.0.6",
6060
"@csstools/postcss-font-format-keywords": "^4.0.0",
6161
"@csstools/postcss-gamut-mapping": "^2.0.6",
6262
"@csstools/postcss-gradients-interpolation-method": "^5.0.6",
@@ -70,19 +70,19 @@
7070
"@csstools/postcss-logical-overscroll-behavior": "^2.0.0",
7171
"@csstools/postcss-logical-resize": "^3.0.0",
7272
"@csstools/postcss-logical-viewport-units": "^3.0.3",
73-
"@csstools/postcss-media-minmax": "^2.0.5",
73+
"@csstools/postcss-media-minmax": "^2.0.6",
7474
"@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4",
7575
"@csstools/postcss-nested-calc": "^4.0.0",
7676
"@csstools/postcss-normalize-display-values": "^4.0.0",
7777
"@csstools/postcss-oklab-function": "^4.0.6",
7878
"@csstools/postcss-progressive-custom-properties": "^4.0.0",
79-
"@csstools/postcss-random-function": "^1.0.1",
79+
"@csstools/postcss-random-function": "^1.0.2",
8080
"@csstools/postcss-relative-color-syntax": "^3.0.6",
8181
"@csstools/postcss-scope-pseudo-class": "^4.0.1",
82-
"@csstools/postcss-sign-functions": "^1.1.0",
83-
"@csstools/postcss-stepped-value-functions": "^4.0.5",
82+
"@csstools/postcss-sign-functions": "^1.1.1",
83+
"@csstools/postcss-stepped-value-functions": "^4.0.6",
8484
"@csstools/postcss-text-decoration-shorthand": "^4.0.1",
85-
"@csstools/postcss-trigonometric-functions": "^4.0.5",
85+
"@csstools/postcss-trigonometric-functions": "^4.0.6",
8686
"@csstools/postcss-unset-value": "^4.0.0",
8787
"autoprefixer": "^10.4.19",
8888
"browserslist": "^4.23.1",

plugins/postcss-color-function/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to PostCSS Color Function
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.7`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#307) (patch)
6+
37
### 4.0.6
48

59
_November 11, 2024_

plugins/postcss-color-function/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"dist"
3939
],
4040
"dependencies": {
41-
"@csstools/css-color-parser": "^3.0.6",
41+
"@csstools/css-color-parser": "^3.0.7",
4242
"@csstools/css-parser-algorithms": "^3.0.4",
4343
"@csstools/css-tokenizer": "^3.0.3",
4444
"@csstools/postcss-progressive-custom-properties": "^4.0.0",

plugins/postcss-color-functional-notation/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to PostCSS Color Functional Notation
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.7`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#307) (patch)
6+
37
### 7.0.6
48

59
_November 11, 2024_

plugins/postcss-color-functional-notation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"dist"
3939
],
4040
"dependencies": {
41-
"@csstools/css-color-parser": "^3.0.6",
41+
"@csstools/css-color-parser": "^3.0.7",
4242
"@csstools/css-parser-algorithms": "^3.0.4",
4343
"@csstools/css-tokenizer": "^3.0.3",
4444
"@csstools/postcss-progressive-custom-properties": "^4.0.0",

plugins/postcss-color-mix-function/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to PostCSS Color Mix Function
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.7`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#307) (patch)
6+
37
### 3.0.6
48

59
_November 11, 2024_

plugins/postcss-color-mix-function/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"dist"
4949
],
5050
"dependencies": {
51-
"@csstools/css-color-parser": "^3.0.6",
51+
"@csstools/css-color-parser": "^3.0.7",
5252
"@csstools/css-parser-algorithms": "^3.0.4",
5353
"@csstools/css-tokenizer": "^3.0.3",
5454
"@csstools/postcss-progressive-custom-properties": "^4.0.0",

plugins/postcss-contrast-color-function/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to PostCSS Contrast Color Function
22

3+
### Unreleased (patch)
4+
5+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.7`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#307) (patch)
6+
37
### 2.0.6
48

59
_November 11, 2024_

plugins/postcss-contrast-color-function/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
],
5050
"dependencies": {
5151
"@csstools/color-helpers": "^5.0.1",
52-
"@csstools/css-color-parser": "^3.0.6",
52+
"@csstools/css-color-parser": "^3.0.7",
5353
"@csstools/css-parser-algorithms": "^3.0.4",
5454
"@csstools/css-tokenizer": "^3.0.3",
5555
"@csstools/postcss-progressive-custom-properties": "^4.0.0",

0 commit comments

Comments
 (0)