Skip to content

Commit 7d19962

Browse files
committed
Increase MSRV and bump version to 0.7.0
1 parent d85bc4c commit 7d19962

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
rust: ["1.61", stable, nightly]
19+
rust: ["1.87", stable, nightly]
2020

2121
steps:
2222
- name: Installing Rust toolchain
@@ -36,7 +36,7 @@ jobs:
3636

3737
strategy:
3838
matrix:
39-
rust: [ "1.61", stable, nightly ]
39+
rust: [ "1.87", stable, nightly ]
4040

4141
steps:
4242
- name: Installing Rust toolchain

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "jpeg-encoder"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Volker Ströbel <volkerstroebel@mysurdity.de>"]
5-
edition = "2021"
5+
edition = "2024"
66
license = "(MIT OR Apache-2.0) AND IJG"
77
description = "JPEG encoder"
88
categories = ["multimedia::images"]
99
keywords = ["jpg", "jpeg", "encoder", "image"]
1010
readme = "README.md"
1111
repository = "https://github.com/vstroebel/jpeg-encoder"
12-
rust-version = "1.61"
12+
rust-version = "1.87"
1313

1414
[features]
1515
default = ["std"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ encoder.encode(&data, 2, 2, ColorType::Rgb)?;
4141

4242
## Minimum Supported Version of Rust (MSRV)
4343

44-
This crate needs at least 1.61 or higher.
44+
This crate needs at least 1.87 or higher.
4545

4646
## License
4747

0 commit comments

Comments
 (0)