Skip to content

Commit bb80aa0

Browse files
authoredAug 7, 2023
der: 0.7.8 (#1192)
Added - `bytes` feature ([#1156]) - impl `RefToOwned`/`OwnedToRef` for `&[u8]`/`Box<[u8]>` ([#1188]) - `BmpString` ([#1164]) Changed - no-panic cleanup ([#1169]) - Bump `der_derive` dependency to v0.7.2 ([#1192]) [#1156]: #1156 [#1164]: #1164 [#1169]: #1169 [#1188]: #1188 [#1192]: #1192 Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
1 parent e9a38ae commit bb80aa0

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
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

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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.8 (2023-08-07)
8+
### Added
9+
- `bytes` feature ([#1156])
10+
- impl `RefToOwned`/`OwnedToRef` for `&[u8]`/`Box<[u8]>` ([#1188])
11+
- `BmpString` ([#1164])
12+
13+
### Changed
14+
- no-panic cleanup ([#1169])
15+
- Bump `der_derive` dependency to v0.7.2 ([#1192])
16+
17+
[#1156]: https://github.com/RustCrypto/formats/pull/1156
18+
[#1164]: https://github.com/RustCrypto/formats/pull/1164
19+
[#1169]: https://github.com/RustCrypto/formats/pull/1169
20+
[#1188]: https://github.com/RustCrypto/formats/pull/1188
21+
[#1192]: https://github.com/RustCrypto/formats/pull/1192
22+
723
## 0.7.7 (2023-06-29)
824
### Added
925
- `TryFrom<String>` impl for strings based on `StrOwned` ([#1064])

‎der/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der"
3-
version = "0.7.7"
3+
version = "0.7.8"
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
@@ -19,7 +19,7 @@ rust-version = "1.65"
1919
arbitrary = { version = "1.3", features = ["derive"], optional = true }
2020
bytes = { version = "1", optional = true, default-features = false }
2121
const-oid = { version = "0.9.2", optional = true }
22-
der_derive = { version = "0.7.1", optional = true }
22+
der_derive = { version = "0.7.2", optional = true }
2323
flagset = { version = "0.4.3", optional = true }
2424
pem-rfc7468 = { version = "0.7", optional = true, features = ["alloc"] }
2525
time = { version = "0.3.4", optional = true, default-features = false }

0 commit comments

Comments
 (0)
Please sign in to comment.