Bump
This commit is contained in:
parent
a264df22fa
commit
404a753921
|
|
@ -8,7 +8,7 @@ members = [
|
|||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "4.17.0"
|
||||
version = "4.18.0"
|
||||
repository = "https://github.com/cloudflare/boring"
|
||||
edition = "2021"
|
||||
|
||||
|
|
@ -19,9 +19,9 @@ tag-prefix = ""
|
|||
publish = false
|
||||
|
||||
[workspace.dependencies]
|
||||
boring-sys = { version = "4.17.0", path = "./boring-sys" }
|
||||
boring = { version = "4.17.0", path = "./boring" }
|
||||
tokio-boring = { version = "4.17.0", path = "./tokio-boring" }
|
||||
boring-sys = { version = "4.18.0", path = "./boring-sys" }
|
||||
boring = { version = "4.18.0", path = "./boring" }
|
||||
tokio-boring = { version = "4.18.0", path = "./tokio-boring" }
|
||||
|
||||
bindgen = { version = "0.72.0", default-features = false, features = ["runtime"] }
|
||||
bytes = "1"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
4.18.0
|
||||
- 2025-05-29 Add set_verify_param
|
||||
- 2025-05-28 Add support for X509_STORE_CTX_get0_untrusted
|
||||
- 2025-06-02 Add X509VerifyParamRef::copy_from (#361)
|
||||
- 2025-06-02 Fix X509VerifyContextRef::set_verify_param (#358)
|
||||
- 2025-06-02 Ensure we call X509_STORE_CTX_cleanup on error path too (#360)
|
||||
- 2025-06-02 Add mutable ex_data APIs for X509StoreContext
|
||||
- 2025-06-02 Add X509StoreContextRef::init_without_cleanup
|
||||
- 2025-06-04 Rename to reset_with_context_data
|
||||
- 2025-06-05 Avoid panicking in error handling
|
||||
- 2025-06-05 Don't unwrap when Result can be returned instead
|
||||
- 2025-06-04 Make X509Store shareable between contexts
|
||||
- 2025-06-05 Sprinkle #[must_use] (#368)
|
||||
- 2025-06-05 Expose SSL_set1_groups to Efficiently Set Curves on SSL Session (#346)
|
||||
- 2025-06-09 Upgrade bindgen to v0.72.0
|
||||
- 2025-06-13 Expose PKey::raw_{private,public}_key (#364)
|
||||
- 2025-06-10 Don't link binaries on docs.rs
|
||||
- 2025-06-11 Use cargo:warning for warnings
|
||||
|
||||
4.17.0
|
||||
- 2025-05-27 Revert "feat(x509): Implement `Clone` for `X509Store` (#339)" (#353)
|
||||
|
|
@ -545,7 +563,7 @@
|
|||
- 2019-12-01 Change *const to *mut to try if it fixes tests
|
||||
- 2019-12-01 move EVP_PKCS82PKEY into evp module
|
||||
- 2019-12-01 Support for PKCS#8 unencrypted private key deserialization
|
||||
- 2019-11-23 Update openssl/src/hash.rs
|
||||
- 2019-11-23 Update openssl/src/hash.rs
|
||||
- 2019-11-22 Add EVP_md_null() and MessageDigest::md_null()
|
||||
- 2019-11-22 Fix up base64 docs
|
||||
- 2019-11-22 Cleanup
|
||||
|
|
|
|||
Loading…
Reference in New Issue