Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump MSRV #445

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: "1.70.0" # MSRV
toolchain: "1.73.0" # MSRV
override: true
components: clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
rust:
- "1.70.0" # MSRV
- "1.73.0" # MSRV
- "stable"
os:
- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion taskchampion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion"
readme = "../README.md"
license = "MIT"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.73.0"

[features]
default = ["sync", "bundled"]
Expand Down
2 changes: 1 addition & 1 deletion taskchampion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ for more information about the design and usage of the tool.

# Minimum Supported Rust Version (MSRV)

This crate supports Rust version 1.70.0 and higher.
This crate supports Rust version 1.73.0 and higher.

*/
mod depmap;
Expand Down
Loading