Skip to content

Commit 9adb377

Browse files
authored
der v0.7.2 (#979)
1 parent d79c577 commit 9adb377

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

der/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.7.2 (2023-04-04)
8+
### Added
9+
- Expose `NestedReader ([#925])
10+
- `From<ObjectIdentifier>` impl for `Any` ([#965])
11+
- `Any::null` helper ([#969])
12+
- `Any::encode_from` ([#976])
13+
14+
[#925]: https://github.com/RustCrypto/formats/pull/925
15+
[#965]: https://github.com/RustCrypto/formats/pull/965
16+
[#969]: https://github.com/RustCrypto/formats/pull/969
17+
[#976]: https://github.com/RustCrypto/formats/pull/976
18+
719
## 0.7.1 (2023-03-07)
820
### Changed
921
- Make `zeroize`'s `alloc` feature conditional ([#920])

der/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = """
55
Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
66
(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with
@@ -22,7 +22,7 @@ der_derive = { version = "0.7", optional = true, path = "derive" }
2222
flagset = { version = "0.4.3", optional = true }
2323
pem-rfc7468 = { version = "0.7", optional = true, features = ["alloc"], path = "../pem-rfc7468" }
2424
time = { version = "0.3.4", optional = true, default-features = false }
25-
zeroize = { version = "1.6", optional = true, default-features = false }
25+
zeroize = { version = "1.5", optional = true, default-features = false }
2626

2727
[dev-dependencies]
2828
hex-literal = "0.3.3"

0 commit comments

Comments
 (0)