Skip to content

Commit 078e920

Browse files
authored
Release version 0.23.0 (#581)
* Release version 0.23.0 Signed-off-by: Facundo Tuesca <[email protected]> * fix changelog Signed-off-by: Facundo Tuesca <[email protected]> --------- Signed-off-by: Facundo Tuesca <[email protected]>
1 parent cec0eff commit 078e920

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asn1"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
authors = ["Alex Gaynor <[email protected]>"]
55
repository = "https://github.com/alex/rust-asn1"
66
keywords = ["asn1"]
@@ -17,7 +17,7 @@ default = ["std"]
1717
std = []
1818

1919
[dependencies]
20-
asn1_derive = { path = "asn1_derive/", version = "0.22.0" }
20+
asn1_derive = { path = "asn1_derive/", version = "0.23.0" }
2121
itoa = "1.0.11"
2222

2323
[dev-dependencies]

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,16 @@ $ cargo add asn1 --no-default-features
2525

2626
### Unreleased
2727

28+
### [0.23.0]
29+
2830
#### Added
2931

3032
- `Writer` now exposes `write_explicit_element` and `write_implicit_element`
3133
methods that allow encoding EXPLICIT/IMPLICIT elements when the tag number
3234
is not known at compile time.
3335

36+
- `NonZero` numbers now implement `Asn1Writable`.
37+
3438
#### Changes
3539

3640
- Updated MSRV to 1.83.0.

asn1_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asn1_derive"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
authors = ["Alex Gaynor <[email protected]>"]
55
repository = "https://github.com/alex/rust-asn1"
66
license = "BSD-3-Clause"

asn1parse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
rust-version = "1.83.0"
88

99
[dependencies]
10-
asn1 = { version = "0.22", path = ".." }
10+
asn1 = { version = "0.23", path = ".." }
1111
clap = { version = "4.5", features = ["derive"] }
1212
hex = "0.4.3"
1313
pem = { version = "3.0.4", default-features = false, features = ["std"] }

0 commit comments

Comments
 (0)