File tree 4 files changed +40
-5
lines changed
4 files changed +40
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.9.104] - 2024-10-15
6
+
7
+ ### Added
8
+
9
+ * Added support for LibreSSL 4.0.x.
10
+ * Added ` EVP_KDF_* ` and ` EVP_KDF_CTX_* ` bindings.
11
+ * Added ` EVP_DigestSqueeze ` .
12
+ * Added ` OSSL_PARAM_construct_octet_string ` .
13
+ * Added ` OSSL_set_max_threads ` and ` OSSL_get_max_threads ` .
14
+
15
+ ### Changed
16
+
17
+ * ` openssl-sys ` is now a 2021 edition crate
18
+ * Explicitly specify the MSRV in ` Cargo.toml `
19
+ * Raised the ` bindgen ` (optional) dependency from 0.65 to 0.69
20
+
5
21
## [ v0.9.103] - 2024-07-20
6
22
7
23
### Added
@@ -607,7 +623,8 @@ Fixed builds against OpenSSL built with `no-cast`.
607
623
* Added ` X509_verify ` and ` X509_REQ_verify ` .
608
624
* Added ` EVP_MD_type ` and ` EVP_GROUP_get_curve_name ` .
609
625
610
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103..master
626
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.104..master
627
+ [ v0.9.104 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103...openssl-sys-v0.9.104
611
628
[ v0.9.103 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102...openssl-sys-v0.9.103
612
629
[ v0.9.102 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101...openssl-sys-v0.9.102
613
630
[ v0.9.101 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100...openssl-sys-v0.9.101
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl-sys"
3
- version = " 0.9.103 "
3
+ version = " 0.9.104 "
4
4
authors = [
5
5
" Alex Crichton <[email protected] >" ,
6
6
" Steven Fackler <[email protected] >" ,
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.10.67] - 2024-10-15
6
+
7
+ ### Added
8
+
9
+ * Added support for LibreSSL 4.0.x.
10
+ * Added ` argon2id `
11
+
12
+ ### Fixed
13
+
14
+ * Fixed a case where ` MdCtxRef::digest_verify_final ` could leave an error on the stack.
15
+ * Fixed a case where ` RsaRef::check_key ` could leave an errror on the stack.
16
+
17
+ ### Changed
18
+
19
+ * ` openssl ` is now a 2021 edition crate
20
+ * Explicitly specify the MSRV in ` Cargo.toml `
21
+
5
22
## [ v0.10.66] - 2024-07-21
6
23
7
24
### Fixed
908
925
909
926
Look at the [ release tags] for information about older releases.
910
927
911
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...master
928
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...master
929
+ [ v0.10.67 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67
912
930
[ v0.10.66 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66
913
931
[ v0.10.65 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...openssl-v0.10.65
914
932
[ v0.10.64 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl"
3
- version = " 0.10.66 "
3
+ version = " 0.10.67 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
license = " Apache-2.0"
6
6
description = " OpenSSL bindings"
@@ -31,7 +31,7 @@ libc = "0.2"
31
31
once_cell = " 1.5.2"
32
32
33
33
openssl-macros = { version = " 0.1.0" , path = " ../openssl-macros" }
34
- ffi = { package = " openssl-sys" , version = " 0.9.103 " , path = " ../openssl-sys" }
34
+ ffi = { package = " openssl-sys" , version = " 0.9.104 " , path = " ../openssl-sys" }
35
35
36
36
[dev-dependencies ]
37
37
hex = " 0.4"
You can’t perform that action at this time.
0 commit comments