diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a112b..0e21c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of to 0.3.0 are beta releases. ## [Unreleased] +### Changed +- MSRV is now 1.67.0. ## [0.4.0] - 2023-04-09 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 95067e5..3aaf5f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["age", "cli", "encryption", "yubikey"] categories = ["command-line-utilities", "cryptography"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.65" # MSRV +rust-version = "1.67" # MSRV [package.metadata.deb] extended-description = """\ diff --git a/README.md b/README.md index b28581d..daf6f61 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ which enables files to be encrypted to age identities stored on YubiKeys. | Environment | CLI command | |-------------|-------------| -| Cargo (Rust 1.65+) | `cargo install age-plugin-yubikey` | +| Cargo (Rust 1.67+) | `cargo install age-plugin-yubikey` | | Homebrew (macOS or Linux) | `brew install age-plugin-yubikey` | | Arch Linux | `pacman -S age-plugin-yubikey` | | Debian | [Debian package](https://github.com/str4d/age-plugin-yubikey/releases) | diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ce69938..4219db3 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.65.0" +channel = "1.67.0" components = ["clippy", "rustfmt"]