From 4c3b1963c821ee9a1083490f584b76f46576fbf7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 21:09:41 +0000 Subject: [PATCH] chore: release v0.6.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- rasn-compiler-derive/Cargo.toml | 2 +- rasn-compiler/CHANGELOG.md | 22 ++++++++++++++++++++++ 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 666e44f..bd338b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -534,7 +534,7 @@ dependencies = [ [[package]] name = "rasn-compiler" -version = "0.5.3" +version = "0.6.0" dependencies = [ "chrono", "clap", @@ -551,7 +551,7 @@ dependencies = [ [[package]] name = "rasn-compiler-derive" -version = "0.5.3" +version = "0.6.0" dependencies = [ "proc-macro2", "rasn-compiler", @@ -560,7 +560,7 @@ dependencies = [ [[package]] name = "rasn-compiler-tests" -version = "0.5.3" +version = "0.6.0" dependencies = [ "bitvec", "bitvec-nom", diff --git a/Cargo.toml b/Cargo.toml index b73f6f2..b5eb07e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,6 @@ members = [ [workspace.package] edition = "2021" license = "MIT/Apache-2.0" -version = "0.5.3" +version = "0.6.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 8950e36..3790fb9 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.5.3" } +rasn-compiler = { path = "../rasn-compiler", version = "0.6.0" } proc-macro2 = "1" syn= "2" diff --git a/rasn-compiler/CHANGELOG.md b/rasn-compiler/CHANGELOG.md index a318e44..b304541 100644 --- a/rasn-compiler/CHANGELOG.md +++ b/rasn-compiler/CHANGELOG.md @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/librasn/compiler/compare/rasn-compiler-v0.5.3...rasn-compiler-v0.6.0) - 2024-11-10 + +### Added + +- *(error)* contextualize linker and grammar errors +- *(lexer)* return error snippet +- *(lexer)* collect errors in tree +- *(lexer)* return error pdu +- *(lexer)* custom input type + +### Fixed + +- return parsing errors for multi-module input +- *(cli)* add colored dependency +- *(lexer)* extract exact error snippet +- *(lexer)* tstring validation + +### Other + +- *(error)* return enum instead of boxed trait +- *(lexer)* use Input type + ## [0.5.3](https://github.com/librasn/compiler/compare/rasn-compiler-v0.5.2...rasn-compiler-v0.5.3) - 2024-10-07 ### Added