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

Update -sys crate version and add changelog #125

Merged
merged 1 commit into from
Oct 5, 2023
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [psa-crypto-sys-0.11.0](https://github.com/parallaxsecond/rust-psa-crypto/tree/psa-crypto-sys-0.11.0) (2023-10-05)

[Full Changelog](https://github.com/parallaxsecond/rust-psa-crypto/compare/psa-crypto-0.10.0...psa-crypto-sys-0.11.0)

**Merged pull requests:**

- Update msrv [\#124](https://github.com/parallaxsecond/rust-psa-crypto/pull/124) ([gowthamsk-arm](https://github.com/gowthamsk-arm))
- ci: Add workflow dispatch [\#122](https://github.com/parallaxsecond/rust-psa-crypto/pull/122) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm))
- Add allow\(renamed\_and\_removed\_lints\). [\#121](https://github.com/parallaxsecond/rust-psa-crypto/pull/121) ([egrimley-arm](https://github.com/egrimley-arm))
- Add some lints and allow\(unknown\_lints\). [\#120](https://github.com/parallaxsecond/rust-psa-crypto/pull/120) ([egrimley-arm](https://github.com/egrimley-arm))
- Update GitHub workflows to use newer actions. [\#117](https://github.com/parallaxsecond/rust-psa-crypto/pull/117) ([egrimley-arm](https://github.com/egrimley-arm))
- Run CI tests with 1.58.1 and stable, and publish a MSRV. [\#116](https://github.com/parallaxsecond/rust-psa-crypto/pull/116) ([egrimley-arm](https://github.com/egrimley-arm))
- Add a prefix to the library names and to every global symbol [\#115](https://github.com/parallaxsecond/rust-psa-crypto/pull/115) ([egrimley-arm](https://github.com/egrimley-arm))
- Replace the "no-std" feature with a "std" feature [\#114](https://github.com/parallaxsecond/rust-psa-crypto/pull/114) ([egrimley-arm](https://github.com/egrimley-arm))
- Disable default-features on serde [\#113](https://github.com/parallaxsecond/rust-psa-crypto/pull/113) ([ithinuel](https://github.com/ithinuel))

## [psa-crypto-sys-0.10.0](https://github.com/parallaxsecond/rust-psa-crypto/tree/psa-crypto-sys-0.10.0) (2023-03-09)

[Full Changelog](https://github.com/parallaxsecond/rust-psa-crypto/compare/psa-crypto-0.10.0...psa-crypto-sys-0.10.0)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion psa-crypto-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psa-crypto-sys"
version = "0.10.0"
version = "0.11.0"
authors = ["Parsec Project Contributors"]
edition = "2018"
description = "Wrapper around the PSA Cryptography API"
Expand Down
2 changes: 1 addition & 1 deletion psa-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/parallaxsecond/rust-psa-crypto"
rust-version = "1.66.0"

[dependencies]
psa-crypto-sys = { path = "../psa-crypto-sys", version = "0.10.0", default-features = false }
psa-crypto-sys = { path = "../psa-crypto-sys", version = "0.11.0", default-features = false }
log = "0.4.20"
serde = { version = "1.0.115", features = ["derive"], default-features = false }
zeroize = { version = "1.4.3", features = ["zeroize_derive"] }
Expand Down
Loading