Bump MSRV to 1.59.0

Closes str4d/rage#348.
This commit is contained in:
Jack Grigg 2022-10-26 08:05:12 +00:00
parent a0ab6914e4
commit d2bb92915a
12 changed files with 22 additions and 15 deletions

View file

@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
override: true
- name: cargo fetch
uses: actions-rs/cargo@v1
@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
override: true
- name: Add target
run: rustup target add ${{ matrix.target }}
@ -63,7 +63,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
override: true
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
@ -74,14 +74,14 @@ jobs:
args: --tests --examples --benches --all-features
clippy:
name: Clippy (1.56.0)
name: Clippy (1.59.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
components: clippy
override: true
- name: Install linux build dependencies
@ -89,7 +89,7 @@ jobs:
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
name: Clippy (1.56.0)
name: Clippy (1.59.0)
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings
@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
override: true
- name: cargo fetch
uses: actions-rs/cargo@v1
@ -146,7 +146,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
components: rustfmt
override: true
- name: Check formatting

View file

@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.59.0
override: true
- name: cargo build
run: cargo build --release --features unstable

View file

@ -17,7 +17,7 @@ The reference interoperable Go implementation is available at
| Environment | CLI command |
|-------------|-------------|
| Cargo (Rust 1.56+) | `cargo install rage` |
| Cargo (Rust 1.59+) | `cargo install rage` |
| Homebrew (macOS or Linux) | `brew tap str4d.xyz/rage https://str4d.xyz/rage`<br>`brew install rage` |
| openSUSE Tumbleweed | `zypper install rage-encryption` |

View file

@ -8,6 +8,7 @@ to 1.0.0 are beta releases.
## [Unreleased]
### Changed
- MSRV is now 1.59.0.
- Migrated to `aead 0.5`.
## [0.8.0] - 2022-05-02

View file

@ -7,7 +7,7 @@ repository = "https://github.com/str4d/rage"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.59"
[package.metadata.docs.rs]
all-features = true

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
### Changed
- MSRV is now 1.59.0.
## [0.3.0] - 2022-05-02
### Added

View file

@ -7,7 +7,7 @@ repository = "https://github.com/str4d/rage"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.59"
[dependencies]
age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] }

View file

@ -16,6 +16,7 @@ to 1.0.0 are beta releases.
- `impl Clone for Identity`
### Changed
- MSRV is now 1.59.0.
- `age::Encryptor::with_recipients` now returns `Option<Encryptor>`, with `None`
returned if the provided list of recipients is empty (to prevent files being
encrypted to no recipients). The `recipients` argument is also now

View file

@ -9,7 +9,7 @@ keywords = ["rage", "encryption"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.59"
[badges]
maintenance = { status = "experimental" }

View file

@ -9,6 +9,9 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
### Changed
- MSRV is now 1.59.0.
### Fixed
- Encryption now returns an error if the file would be encrypted to no
recipients. This can occur if only `-R/--recipients-file` flags are provided,

View file

@ -9,7 +9,7 @@ keywords = ["age", "cli", "encryption"]
categories = ["command-line-utilities", "cryptography"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.59"
default-run = "rage"
[package.metadata.deb]

View file

@ -1 +1 @@
1.56.0
1.59.0