Skip to content

Commit 3b92283

Browse files
authored
der v0.7.6 (#1070)
1 parent d84599e commit 3b92283

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

der/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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.6 (2023-05-16)
8+
### Added
9+
- `SetOfVec::{extend, from_iter}` methods ([#1065])
10+
- `SetOf(Vec)::{insert, insert_ordered}` methods ([#1067])
11+
12+
### Changed
13+
- Deprecate `SetOf(Vec)::add` ([#1067])
14+
15+
### Fixed
16+
- Off-by-one error in `BMPString` tag ([#1037])
17+
- Handling of non-unique items in `SetOf`(Vec) ([#1066])
18+
19+
[#1037]: https://github.com/RustCrypto/formats/pull/1037
20+
[#1065]: https://github.com/RustCrypto/formats/pull/1065
21+
[#1066]: https://github.com/RustCrypto/formats/pull/1066
22+
[#1067]: https://github.com/RustCrypto/formats/pull/1067
23+
724
## 0.7.5 (2023-04-24)
825
### Added
926
- adds support for `DateTime::INFINITY` ([#1026])

der/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der"
3-
version = "0.7.5"
3+
version = "0.7.6"
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

pkcs7/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
rust-version = "1.65"
1313

1414
[dependencies]
15-
der = { version = "0.7", features = ["oid"] }
15+
der = { version = "0.7.6", features = ["oid"] }
1616
spki = { version = "0.7" }
1717
x509-cert = { version = "0.2", default-features = false }
1818

x509-cert/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rust-version = "1.65"
1616

1717
[dependencies]
1818
const-oid = { version = "0.9.2", features = ["db"] } # TODO: path = "../const-oid"
19-
der = { version = "0.7.5", features = ["alloc", "derive", "flagset", "oid"] }
19+
der = { version = "0.7.6", features = ["alloc", "derive", "flagset", "oid"] }
2020
spki = { version = "0.7.2", features = ["alloc"] }
2121

2222
# optional dependencies

0 commit comments

Comments
 (0)