mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
parent
a0ab6914e4
commit
d2bb92915a
12 changed files with 22 additions and 15 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/interop.yml
vendored
2
.github/workflows/interop.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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` |
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.56.0
|
||||
1.59.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue