From 4613c96c4ac3d5ae77539316c4a05904d21f46c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Fri, 6 Oct 2023 14:08:45 +0100 Subject: [PATCH] Update -sys crate version and add changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás González --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- cryptoki-sys/Cargo.toml | 2 +- cryptoki/Cargo.toml | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07eb09c4..da215c21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [cryptoki-sys-0.1.7](https://github.com/parallaxsecond/rust-cryptoki/tree/cryptoki-sys-0.1.7) (2023-10-05) + +[Full Changelog](https://github.com/parallaxsecond/rust-cryptoki/compare/cryptoki-0.5.0...cryptoki-sys-0.1.7) + +**Closed issues:** + +- PKCS OAEP padding always returns: Pkcs11\(ArgumentsBad\) [\#163](https://github.com/parallaxsecond/rust-cryptoki/issues/163) + +**Merged pull requests:** + +- Fix spelling and Update Cargo.lock [\#172](https://github.com/parallaxsecond/rust-cryptoki/pull/172) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Start tracking Cargo.lock file [\#171](https://github.com/parallaxsecond/rust-cryptoki/pull/171) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- ci: Add workflow dispatch [\#170](https://github.com/parallaxsecond/rust-cryptoki/pull/170) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Drop unused target-lexicon crate [\#169](https://github.com/parallaxsecond/rust-cryptoki/pull/169) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Change lints for the library and allow unknown lints [\#168](https://github.com/parallaxsecond/rust-cryptoki/pull/168) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Bump bindgen to 0.66.1 [\#167](https://github.com/parallaxsecond/rust-cryptoki/pull/167) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Fix RSA OKCS OAEP mechanism [\#165](https://github.com/parallaxsecond/rust-cryptoki/pull/165) ([wiktor-k](https://github.com/wiktor-k)) +- elliptic\_curve: Fix broken references [\#161](https://github.com/parallaxsecond/rust-cryptoki/pull/161) ([wiktor-k](https://github.com/wiktor-k)) +- Make generic bindings [\#154](https://github.com/parallaxsecond/rust-cryptoki/pull/154) ([arjennienhuis](https://github.com/arjennienhuis)) + ## [cryptoki-sys-0.1.6](https://github.com/parallaxsecond/rust-cryptoki/tree/cryptoki-sys-0.1.6) (2023-04-22) [Full Changelog](https://github.com/parallaxsecond/rust-cryptoki/compare/cryptoki-0.3.1...cryptoki-sys-0.1.6) diff --git a/Cargo.lock b/Cargo.lock index aa6362f6..2ec896e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ dependencies = [ [[package]] name = "cryptoki-sys" -version = "0.1.6" +version = "0.1.7" dependencies = [ "bindgen", "libloading", diff --git a/cryptoki-sys/Cargo.toml b/cryptoki-sys/Cargo.toml index 71b5aa78..8a50b2c1 100644 --- a/cryptoki-sys/Cargo.toml +++ b/cryptoki-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryptoki-sys" -version = "0.1.6" +version = "0.1.7" authors = ["Contributors to the Parsec project"] edition = '2018' description = "FFI wrapper around the PKCS #11 API" diff --git a/cryptoki/Cargo.toml b/cryptoki/Cargo.toml index b40cd235..0ba396e5 100644 --- a/cryptoki/Cargo.toml +++ b/cryptoki/Cargo.toml @@ -17,7 +17,7 @@ bitflags = "1.3" libloading = "0.7.0" log = "0.4.14" psa-crypto = { version = "0.9.0", default-features = false, optional = true } -cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.6" } +cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.7" } paste = "1.0.6" secrecy = "0.8.0"