File tree Expand file tree Collapse file tree 4 files changed +33
-6
lines changed Expand file tree Collapse file tree 4 files changed +33
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.9.86] - 2023-04-20
6
+
7
+ ### Fixed
8
+
9
+ * Fixed BoringSSL support with the latest bindgen release.
10
+
11
+ ### Added
12
+
13
+ * Added bindings for PKCS #7 functions and more X.509 functions.
14
+
15
+
5
16
## [ v0.9.85] - 2023-04-09
6
17
7
18
### Added
@@ -424,8 +435,9 @@ Fixed builds against OpenSSL built with `no-cast`.
424
435
* Added ` X509_verify ` and ` X509_REQ_verify ` .
425
436
* Added ` EVP_MD_type ` and ` EVP_GROUP_get_curve_name ` .
426
437
427
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85..master
428
- [ v0.9.85 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85...openssl-sys-v0.9.85
438
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.86..master
439
+ [ v0.9.86 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85...openssl-sys-v0.9.86
440
+ [ v0.9.85 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.84...openssl-sys-v0.9.85
429
441
[ v0.9.84 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.83...openssl-sys-v0.9.84
430
442
[ v0.9.83 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.82...openssl-sys-v0.9.83
431
443
[ v0.9.82 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.81...openssl-sys-v0.9.82
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl-sys"
3
- version = " 0.9.85 "
3
+ version = " 0.9.86 "
4
4
authors = [
5
5
" Alex Crichton <alex@alexcrichton.com>" ,
6
6
" Steven Fackler <sfackler@gmail.com>" ,
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.10.51] - 2023-04-20
6
+
7
+ ### Added
8
+
9
+ * Added ` X509RevokedRef::issuer_name ` and ` X509RevokedRef::reason_code ` .
10
+ * Added ` Dh::set_key ` and ` Dh::set_public_key `
11
+ * Added ` Asn1OctetString ` and ` Asn1OctetStringRef1 `
12
+ * Added ` X509Extension::new_from_der `
13
+
14
+ ### Deprecated
15
+
16
+ * Deprecated ` X509Extension::new ` and ` X509Extension::new_nid ` in favor of ` X509Extension::new_from_der ` and the ` extensions ` module.
17
+ * Deprecated ` X509Extension::add_alias ` , it is not required with ` new_from_der ` or the ` extensions ` module.
18
+
5
19
## [ v0.10.50] - 2023-04-09
6
20
7
21
### Added
724
738
725
739
Look at the [ release tags] for information about older releases.
726
740
727
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.50...master
741
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.51...master
742
+ [ v0.10.51 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.50...openssl-v0.10.51
728
743
[ v0.10.50 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.49...openssl-v0.10.50
729
744
[ v0.10.49 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.48...openssl-v0.10.49
730
745
[ v0.10.48 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.47...openssl-v0.10.48
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl"
3
- version = " 0.10.50 "
3
+ version = " 0.10.51 "
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
license = " Apache-2.0"
6
6
description = " OpenSSL bindings"
@@ -30,7 +30,7 @@ libc = "0.2"
30
30
once_cell = " 1.5.2"
31
31
32
32
openssl-macros = { version = " 0.1.0" , path = " ../openssl-macros" }
33
- ffi = { package = " openssl-sys" , version = " 0.9.85 " , path = " ../openssl-sys" }
33
+ ffi = { package = " openssl-sys" , version = " 0.9.86 " , path = " ../openssl-sys" }
34
34
35
35
[dev-dependencies ]
36
36
hex = " 0.3"
You can’t perform that action at this time.
0 commit comments