Skip to content

Commit e006933

Browse files
committed
chore: Bump MSRV to 1.70
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 24c2d30 commit e006933

File tree

10 files changed

+21
-5
lines changed

10 files changed

+21
-5
lines changed

.github/workflows/build.yml

+3-1
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.65"
168+
toolchain: "1.70"
169169

170170
- uses: Swatinem/rust-cache@v2
171171
with:
@@ -537,6 +537,8 @@ jobs:
537537
gcc main.o target/debug/libcss_inline.so -o out
538538
./out
539539
working-directory: ./bindings/c
540+
env:
541+
LD_LIBRARY_PATH: target/debug
540542

541543
features:
542544
name: Check features

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.70`.
8+
59
## [0.14.1] - 2024-04-27
610

711
### Fixed

bindings/c/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.70`.
8+
59
## [0.14.1] - 2024-04-27
610

711
### Fixed

bindings/javascript/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Bump MSRV to `1.70`.
8+
59
### Fixed
610

711
- Build on `linux-arm-gnueabihf`

bindings/javascript/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/Stranger6667/css-inline"
99
keywords = ["css", "html", "email", "stylesheet", "inlining"]
1010
categories = ["web-programming"]
1111
license = "MIT"
12-
rust-version = "1.65"
12+
rust-version = "1.70"
1313
include = ["src/*.rs", "LICENSE", "README.md", "CHANGELOG.md"]
1414

1515
[lib]

bindings/python/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Changed
66

77
- Update `PyO3` to `0.22.0`.
8+
- Bump MSRV to `1.70`.
89

910
## [0.14.1] - 2024-04-27
1011

bindings/python/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "css-inline-python"
33
version = "0.14.1"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.65"
6+
rust-version = "1.70"
77
include = ["src/lib.rs", "README.md", "CHANGELOG.md", "build.rs"]
88

99
[lib]

bindings/ruby/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Changed
66

77
- Update `magnus` to `0.7`.
8+
- Bump MSRV to `1.70`.
89

910
## [0.14.1] - 2024-04-27
1011

bindings/ruby/ext/css_inline/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/Stranger6667/css-inline"
99
keywords = ["css", "html", "email", "stylesheet", "inlining"]
1010
categories = ["web-programming"]
1111
license = "MIT"
12-
rust-version = "1.65"
12+
rust-version = "1.70"
1313

1414
[lib]
1515
name = "css_inline"

css-inline/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exclude = [
1616
"tests",
1717
]
1818
categories = ["web-programming"]
19-
rust-version = "1.65"
19+
rust-version = "1.70"
2020

2121
[[bin]]
2222
name = "css-inline"

0 commit comments

Comments
 (0)