Skip to content

Commit d1d9992

Browse files
committed
chore: Update selectors to 0.29.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 30b014b commit d1d9992

File tree

9 files changed

+26
-5
lines changed

9 files changed

+26
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165

166166
- uses: dtolnay/rust-toolchain@master
167167
with:
168-
toolchain: "1.71.1"
168+
toolchain: "1.75"
169169

170170
- uses: Swatinem/rust-cache@v2
171171
with:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
### Changed
66

77
- **CLI**: Remove `pico-args`
8+
- Bump MSRV to `1.75`.
9+
- Update `selectors` to `0.29`.
810

911
## [0.15.0] - 2025-06-17
1012

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To include it in your project, add the following line to the dependencies sectio
5757
css-inline = "0.15"
5858
```
5959

60-
The Minimum Supported Rust Version is 1.71.1.
60+
The Minimum Supported Rust Version is 1.75.
6161

6262
## Usage
6363

bindings/c/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.75`.
8+
- Update `selectors` to `0.29`.
9+
510
## [0.15.0] - 2025-06-21
611

712
### Changed

bindings/javascript/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.75`.
8+
- Update `selectors` to `0.29`.
9+
510
### Fixed
611

712
- Expose `StylesheetCache` interface, `cache` config option, and `version` function.

bindings/python/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.75`.
8+
- Update `selectors` to `0.29`.
9+
510
## [0.15.0] - 2025-06-17
611

712
### Changed

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "css-inline-python"
33
version = "0.15.0"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.71.1"
6+
rust-version = "1.75"
77
include = ["src/lib.rs", "README.md", "CHANGELOG.md", "build.rs"]
88

99
[lib]

bindings/ruby/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Update `selectors` to `0.29`.
8+
59
## [0.15.2] - 2025-06-24
610

711
### Changed

css-inline/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exclude = [
1616
"tests",
1717
]
1818
categories = ["web-programming"]
19-
rust-version = "1.71.1"
19+
rust-version = "1.75"
2020

2121
[[bin]]
2222
name = "css-inline"
@@ -37,7 +37,7 @@ precomputed-hash = "0.1.1"
3737
rayon = { version = "1.10", optional = true }
3838
reqwest = { version = "0.12.0", optional = true, default-features = false, features = ["rustls-tls", "blocking"] }
3939
rustc-hash = "2.0.0"
40-
selectors = "0.28.0"
40+
selectors = "0.29.0"
4141
smallvec = "1"
4242
url = "2"
4343

0 commit comments

Comments
 (0)