diff --git a/CHANGELOG.md b/CHANGELOG.md index 95dae8c..158622a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 7070916..2d02645 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "psa-crypto-sys" -version = "0.10.0" +version = "0.11.0" dependencies = [ "bindgen", "cc", diff --git a/psa-crypto-sys/Cargo.toml b/psa-crypto-sys/Cargo.toml index 9f876b5..83a1fb9 100644 --- a/psa-crypto-sys/Cargo.toml +++ b/psa-crypto-sys/Cargo.toml @@ -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" diff --git a/psa-crypto/Cargo.toml b/psa-crypto/Cargo.toml index 2958736..b5757fb 100644 --- a/psa-crypto/Cargo.toml +++ b/psa-crypto/Cargo.toml @@ -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"] }