From 810639ae5b4afd97af2395cbf89d7216496b4f60 Mon Sep 17 00:00:00 2001 From: Ionut Mihalcea Date: Thu, 2 Feb 2023 11:35:09 +0000 Subject: [PATCH 1/2] Prepare crates for release. Signed-off-by: Ionut Mihalcea --- tss-esapi-sys/Cargo.toml | 2 +- tss-esapi/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tss-esapi-sys/Cargo.toml b/tss-esapi-sys/Cargo.toml index 840b4826..37e7ce4b 100644 --- a/tss-esapi-sys/Cargo.toml +++ b/tss-esapi-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tss-esapi-sys" -version = "0.3.0" +version = "0.3.1" authors = ["Parsec Project Contributors"] edition = "2018" description = "FFI wrapper around TSS 2.0 Enhanced System API" diff --git a/tss-esapi/Cargo.toml b/tss-esapi/Cargo.toml index 83ee3c8b..842ce356 100644 --- a/tss-esapi/Cargo.toml +++ b/tss-esapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tss-esapi" -version = "7.1.0" +version = "7.2.0" authors = ["Parsec Project Contributors"] edition = "2018" description = "Rust-native wrapper around TSS 2.0 Enhanced System API" @@ -22,7 +22,7 @@ num-traits = "0.2.12" hostname-validator = "1.1.0" regex = "1.3.9" zeroize = { version = "1.1.0", features = ["zeroize_derive"] } -tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.3.0" } +tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.3.1" } oid = "0.2.1" picky-asn1 = "0.3.0" picky-asn1-x509 = "0.6.1" From 0bfddf76f9f0f7d3840dea36507426ad2d51bd93 Mon Sep 17 00:00:00 2001 From: Ionut Mihalcea Date: Thu, 2 Feb 2023 11:49:54 +0000 Subject: [PATCH 2/2] Add changelog Signed-off-by: Ionut Mihalcea --- CHANGELOG.md | 9 +++++++++ tss-esapi-sys/Cargo.toml | 2 +- tss-esapi/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8235a11..85cb7caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [tss-esapi-7.2.0](https://github.com/parallaxsecond/rust-tss-esapi/tree/tss-esapi-7.2.0) (2023-02-07) +## [tss-esapi-sys-0.4.0](https://github.com/parallaxsecond/rust-tss-esapi/tree/tss-esapi-sys-0.4.0) (2023-02-07) + +[Full Changelog](https://github.com/parallaxsecond/rust-tss-esapi/compare/tss-esapi-7.1.0...tss-esapi-7.2.0) + +- Expanded the list of supported `tpm2-tss` versions to include v4. [#382](https://github.com/parallaxsecond/rust-tss-esapi/issues/382) +- Fixed a bug in handle management that hindered some use cases. [#383](https://github.com/parallaxsecond/rust-tss-esapi/issues/383) +- Updated the FFI bindings using v0.63 of bindgen. [#392](https://github.com/parallaxsecond/rust-tss-esapi/pull/392) + ## [tss-esapi-7.1.0](https://github.com/parallaxsecond/rust-tss-esapi/tree/tss-esapi-7.1.0) (2022-05-25) - Fixed a security vulnerability related to using nonces when opening auth sessions. For more details see #344 . diff --git a/tss-esapi-sys/Cargo.toml b/tss-esapi-sys/Cargo.toml index 37e7ce4b..7e4f0d5d 100644 --- a/tss-esapi-sys/Cargo.toml +++ b/tss-esapi-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tss-esapi-sys" -version = "0.3.1" +version = "0.4.0" authors = ["Parsec Project Contributors"] edition = "2018" description = "FFI wrapper around TSS 2.0 Enhanced System API" diff --git a/tss-esapi/Cargo.toml b/tss-esapi/Cargo.toml index 842ce356..a7e1320b 100644 --- a/tss-esapi/Cargo.toml +++ b/tss-esapi/Cargo.toml @@ -22,7 +22,7 @@ num-traits = "0.2.12" hostname-validator = "1.1.0" regex = "1.3.9" zeroize = { version = "1.1.0", features = ["zeroize_derive"] } -tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.3.1" } +tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.4.0" } oid = "0.2.1" picky-asn1 = "0.3.0" picky-asn1-x509 = "0.6.1"