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

Test and fix min versions build #737

Merged
merged 5 commits into from Feb 18, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/blobby.yml
Expand Up @@ -32,3 +32,8 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true
- run: cargo test --release

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}
6 changes: 6 additions & 0 deletions .github/workflows/block-buffer.yml
Expand Up @@ -36,6 +36,12 @@ jobs:
target: ${{ matrix.target }}
override: true
- run: cargo build --release --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/block-padding.yml
Expand Up @@ -36,6 +36,12 @@ jobs:
target: ${{ matrix.target }}
override: true
- run: cargo build --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cpufeatures.yml
Expand Up @@ -17,6 +17,11 @@ env:
RUSTFLAGS: "-Dwarnings"

jobs:
minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

# Linux tests
linux:
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/dbl.yml
Expand Up @@ -36,6 +36,12 @@ jobs:
target: ${{ matrix.target }}
override: true
- run: cargo build --release --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/hex-literal.yml
Expand Up @@ -36,6 +36,12 @@ jobs:
target: ${{ matrix.target }}
override: true
- run: cargo build --release --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/inout.yml
Expand Up @@ -37,6 +37,12 @@ jobs:
override: true
- run: cargo build --target ${{ matrix.target }}
- run: cargo build --features block-padding --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/opaque-debug.yml
Expand Up @@ -36,6 +36,12 @@ jobs:
target: ${{ matrix.target }}
override: true
- run: cargo build --release --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/zeroize.yml
Expand Up @@ -38,6 +38,11 @@ jobs:
profile: minimal
- run: cargo build --no-default-features --release --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}

test:
strategy:
matrix:
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion zeroize/derive/CHANGELOG.md
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.3.1 (2021-01-14)
## 1.3.2 (2022-02-18)
### Fixed
- Min versions build ([#732])

[#732]: https://github.com/RustCrypto/utils/pull/732

## 1.3.1 (2021-01-14) [YANKED]
Copy link
Member Author

@newpavlov newpavlov Feb 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tarcieri
Note that I plan to yank zeroize_derive v1.3.1, since it will be very annoying to fix min versions build for crates which depend on zeroize_derive through zeroize with non-yanked v1.3.1.

### Removed
- `ZeroizeOnDrop` implementation for `#[zeroize(drop)]` ([#715])

Expand Down
2 changes: 1 addition & 1 deletion zeroize/derive/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "zeroize_derive"
description = "Custom derive support for zeroize"
version = "1.3.1"
version = "1.3.2"
authors = ["The RustCrypto Project Developers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/utils/tree/master/zeroize/derive"
Expand Down