From 857a01d2c32da348e1c544ffbb8911bf7457a827 Mon Sep 17 00:00:00 2001 From: Robert Mitwicki Date: Wed, 27 Mar 2024 13:41:21 +0100 Subject: [PATCH] chore: release 0.4.2 version --- Cargo.lock | 12 ++++++------ oca-ast/Cargo.toml | 2 +- oca-bundle/Cargo.toml | 4 ++-- oca-bundle/README.md | 2 +- oca-dag/Cargo.toml | 6 +++--- oca-file/Cargo.toml | 4 ++-- oca/Cargo.toml | 10 +++++----- tests/Cargo.toml | 2 +- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7117722..e338093 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -831,7 +831,7 @@ dependencies = [ [[package]] name = "oca-ast" -version = "0.4.1" +version = "0.4.2" dependencies = [ "env_logger", "indexmap 1.9.3", @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "oca-bundle" -version = "0.4.1" +version = "0.4.2" dependencies = [ "cascade", "convert_case", @@ -877,7 +877,7 @@ dependencies = [ [[package]] name = "oca-dag" -version = "0.4.1" +version = "0.4.2" dependencies = [ "dyn-clonable", "indexmap 1.9.3", @@ -892,7 +892,7 @@ dependencies = [ [[package]] name = "oca-file" -version = "0.4.1" +version = "0.4.2" dependencies = [ "clap 4.4.8", "convert_case", @@ -913,7 +913,7 @@ dependencies = [ [[package]] name = "oca-rs" -version = "0.4.1" +version = "0.4.2" dependencies = [ "dyn-clonable", "isolang", @@ -1519,7 +1519,7 @@ dependencies = [ [[package]] name = "tests-integration" -version = "0.4.1" +version = "0.4.2" dependencies = [ "oca-rs", ] diff --git a/oca-ast/Cargo.toml b/oca-ast/Cargo.toml index dfaec24..349de2b 100644 --- a/oca-ast/Cargo.toml +++ b/oca-ast/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-ast" description = "Library for handling Abstract Syntax Tree of OCA bundle" -version = "0.4.1" +version = "0.4.2" license = "EUPL-1.2" edition = "2021" authors = [ diff --git a/oca-bundle/Cargo.toml b/oca-bundle/Cargo.toml index 3d98f54..a0f102b 100644 --- a/oca-bundle/Cargo.toml +++ b/oca-bundle/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-bundle" description = "Rust implementation of Overlays Capture Architecture bundle" -version = "0.4.1" +version = "0.4.2" license = "EUPL-1.2" edition = "2021" authors = [ @@ -31,7 +31,7 @@ indexmap = { version = "1.8.0", features = ["serde"]} isolang = { version = "2.3.0", features = ["serde"] } lazy_static = "1.4.0" linked-hash-map = { version = "0.5.6", features = ["serde_impl"] } -oca-ast = { version = "0.4.1", path = "../oca-ast" } +oca-ast = { version = "0.4.2", path = "../oca-ast" } paste = "1.0.11" piccolo = "0.1.1" regex = "1.5.4" diff --git a/oca-bundle/README.md b/oca-bundle/README.md index 1b162cc..50a5af3 100644 --- a/oca-bundle/README.md +++ b/oca-bundle/README.md @@ -39,7 +39,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -oca-bundle = "0.4.1" +oca-bundle = "0.4.2" ``` ### Build diff --git a/oca-dag/Cargo.toml b/oca-dag/Cargo.toml index 16ec6b2..2db39a1 100644 --- a/oca-dag/Cargo.toml +++ b/oca-dag/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-dag" -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = [ "Marcin Olichwiruk ", @@ -22,8 +22,8 @@ path = "src/lib.rs" dyn-clonable = "0.9.0" indexmap = { version = "1.9.3", features = ["serde"] } isolang = { version = "2.3.0", features = ["serde"] } -oca-ast = { version = "0.4.1", path = "../oca-ast" } -oca-bundle = { version = "0.4.1", path = "../oca-bundle", features = [ +oca-ast = { version = "0.4.2", path = "../oca-ast" } +oca-bundle = { version = "0.4.2", path = "../oca-bundle", features = [ "format_overlay", ] } said = { version = "0.3.0", features = ["macros"] } diff --git a/oca-file/Cargo.toml b/oca-file/Cargo.toml index 0119f3d..48da975 100644 --- a/oca-file/Cargo.toml +++ b/oca-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-file" -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = ["Marcin Olichwiruk ", "Robert Mitwicki ", "MichaƂ Pietrus "] license = "EUPL-1.2" @@ -18,7 +18,7 @@ pest = "2.5.1" pest_derive = "2.5.1" pretty_assertions = "1.3.0" thiserror = "1.0.38" -oca-ast = { version = "0.4.1", path = "../oca-ast" } +oca-ast = { version = "0.4.2", path = "../oca-ast" } said = { version = "0.3.0", features = ["macros"] } log = "0.4.20" env_logger = "0.10.0" diff --git a/oca/Cargo.toml b/oca/Cargo.toml index c009b39..f7ea56c 100644 --- a/oca/Cargo.toml +++ b/oca/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-rs" description = "OCA rust ecosytem facade" -version = "0.4.1" +version = "0.4.2" license = "EUPL-1.2" edition = "2021" authors = [ @@ -22,12 +22,12 @@ local-references = [] [dependencies] dyn-clonable = "0.9.0" isolang = "2.3.0" -oca-ast = { version = "0.4.1", path = "../oca-ast" } -oca-bundle = { version = "0.4.1", path = "../oca-bundle", features = [ +oca-ast = { version = "0.4.2", path = "../oca-ast" } +oca-bundle = { version = "0.4.2", path = "../oca-bundle", features = [ "format_overlay", ] } -oca-dag = { version = "0.4.1", path = "../oca-dag" } -oca-file = { version = "0.4.1", path = "../oca-file" } +oca-dag = { version = "0.4.2", path = "../oca-dag" } +oca-file = { version = "0.4.2", path = "../oca-file" } regex = "1.9.5" rusqlite = "0.29.0" said = { version = "0.3.0", features = ["macros"] } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index b2df300..a0a6e30 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tests-integration" -version = "0.4.1" +version = "0.4.2" edition = "2021" publish = false