Skip to content

Commit 4a9239c

Browse files
committed
Prepare release 8.2.0
1 parent df9ef62 commit 4a9239c

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@
88

99
### Thanks
1010

11+
## 8.2.0
12+
13+
### Changed/Fixed
14+
15+
- Fix parser name to `parse_der_visiblestring` for `VisibleString` (Closes #64).
16+
Keep previous function for compatibility (mark it as deprecated).
17+
- Fix clippy warnings (rustc 1.67.1)
18+
- Update test-case from 2.0 to 3.0
19+
1120
## 8.1.0
1221

1322
### Changed/Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords = ["BER","DER","ASN1","parser","nom"]
55
homepage = "https://github.com/rusticata/der-parser"
66
repository = "https://github.com/rusticata/der-parser.git"
77
name = "der-parser"
8-
version = "8.1.0"
8+
version = "8.2.0"
99
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
1010
categories = ["parser-implementations"]
1111
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![docs.rs](https://docs.rs/der-parser/badge.svg)](https://docs.rs/der-parser)
66
[![crates.io](https://img.shields.io/crates/v/der-parser.svg)](https://crates.io/crates/der-parser)
77
[![Download numbers](https://img.shields.io/crates/d/der-parser.svg)](https://crates.io/crates/der-parser)
8-
[![dependency status](https://deps.rs/crate/der-parser/8.1.0/status.svg)](https://deps.rs/crate/der-parser/8.1.0)
8+
[![dependency status](https://deps.rs/crate/der-parser/8.2.0/status.svg)](https://deps.rs/crate/der-parser/8.2.0)
99
[![Github CI](https://github.com/rusticata/der-parser/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/der-parser/actions)
1010
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
1111

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! [![docs.rs](https://docs.rs/der-parser/badge.svg)](https://docs.rs/der-parser)
44
//! [![crates.io](https://img.shields.io/crates/v/der-parser.svg)](https://crates.io/crates/der-parser)
55
//! [![Download numbers](https://img.shields.io/crates/d/der-parser.svg)](https://crates.io/crates/der-parser)
6-
//! [![dependency status](https://deps.rs/crate/der-parser/8.1.0/status.svg)](https://deps.rs/crate/der-parser/8.1.0)
6+
//! [![dependency status](https://deps.rs/crate/der-parser/8.2.0/status.svg)](https://deps.rs/crate/der-parser/8.2.0)
77
//! [![Github CI](https://github.com/rusticata/der-parser/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/der-parser/actions)
88
//! [![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
99
//!

0 commit comments

Comments
 (0)