From 9b7733d8004adcb66d7d0eaee3833e9ecc5e0812 Mon Sep 17 00:00:00 2001 From: Robby Cornelissen Date: Thu, 24 Oct 2024 12:23:02 +0900 Subject: [PATCH] Bump version to 0.18.0 (#490) * Bump version to 0.18.0 * Reflect updated version in README --- Cargo.toml | 4 ++-- README.md | 4 ++-- asn1_derive/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b55423f..89a6ce0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asn1" -version = "0.17.0" +version = "0.18.0" authors = ["Alex Gaynor "] repository = "https://github.com/alex/rust-asn1" keywords = ["asn1"] @@ -15,7 +15,7 @@ default = ["std"] std = [] [dependencies] -asn1_derive = { path = "asn1_derive/", version = "0.17.0" } +asn1_derive = { path = "asn1_derive/", version = "0.18.0" } [dev-dependencies] libc = "0.2.11" diff --git a/README.md b/README.md index bfbea53..9e98a2f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Add `asn1` to the `[dependencies]` section of your `Cargo.toml`: ```toml [dependencies] -asn1 = "0.17" +asn1 = "0.18" ``` Builds on Rust 1.59.0 and newer. @@ -19,7 +19,7 @@ Builds on Rust 1.59.0 and newer. `rust-asn1` is compatible with `#![no_std]` environments: ```toml -asn1 = { version = "0.17", default-features = false } +asn1 = { version = "0.18", default-features = false } ``` [deps-rs-image]: https://deps.rs/repo/github/alex/rust-asn1/status.svg diff --git a/asn1_derive/Cargo.toml b/asn1_derive/Cargo.toml index e150303..c868c9b 100644 --- a/asn1_derive/Cargo.toml +++ b/asn1_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asn1_derive" -version = "0.17.0" +version = "0.18.0" authors = ["Alex Gaynor "] repository = "https://github.com/alex/rust-asn1" license = "BSD-3-Clause"