From 9776b5b45e02bf5d7812ba14428dac7c7b8c50b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:51:40 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- rasn-compiler-derive/Cargo.toml | 2 +- rasn-compiler/CHANGELOG.md | 8 ++++++++ 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc31768..a73d2a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -579,7 +579,7 @@ dependencies = [ [[package]] name = "rasn-compiler" -version = "0.3.2" +version = "0.4.0" dependencies = [ "chrono", "clap", @@ -595,7 +595,7 @@ dependencies = [ [[package]] name = "rasn-compiler-derive" -version = "0.3.2" +version = "0.4.0" dependencies = [ "proc-macro2", "rasn-compiler", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "rasn-compiler-tests" -version = "0.3.2" +version = "0.4.0" dependencies = [ "bitvec", "bitvec-nom", diff --git a/Cargo.toml b/Cargo.toml index f54ebec..a80e089 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,6 @@ members = [ [workspace.package] edition = "2021" license = "MIT/Apache-2.0" -version = "0.3.2" +version = "0.4.0" repository = "https://github.com/librasn/compiler.git" homepage = "https://librasn.github.io/" diff --git a/rasn-compiler-derive/Cargo.toml b/rasn-compiler-derive/Cargo.toml index c60218d..c0a5f5a 100644 --- a/rasn-compiler-derive/Cargo.toml +++ b/rasn-compiler-derive/Cargo.toml @@ -16,6 +16,6 @@ authors = ["Kevin Westphal"] proc-macro = true [dependencies] -rasn-compiler = { path = "../rasn-compiler", version = "0.3.2" } +rasn-compiler = { path = "../rasn-compiler", version = "0.4.0" } proc-macro2 = "1" syn= "2" diff --git a/rasn-compiler/CHANGELOG.md b/rasn-compiler/CHANGELOG.md index 7a353c0..9d635f8 100644 --- a/rasn-compiler/CHANGELOG.md +++ b/rasn-compiler/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0](https://github.com/librasn/compiler/compare/rasn-compiler-v0.3.2...rasn-compiler-v0.4.0) - 2024-09-16 + +### Other + +- Handle case of same type in different variants +- Add optional From impl generation for CHOICE +- Fix a couple warnings & fmt + ## [0.3.2](https://github.com/librasn/compiler/compare/rasn-compiler-v0.3.1...rasn-compiler-v0.3.2) - 2024-08-23 ### Other