diff --git a/Cargo.lock b/Cargo.lock index ee22140..f32157b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -832,7 +832,7 @@ dependencies = [ [[package]] name = "oca-ast-semantics" -version = "0.6.1" +version = "0.6.2" dependencies = [ "env_logger", "indexmap 1.9.3", @@ -850,7 +850,7 @@ dependencies = [ [[package]] name = "oca-ast-transformation" -version = "0.6.1" +version = "0.6.2" dependencies = [ "env_logger", "indexmap 1.9.3", @@ -868,7 +868,7 @@ dependencies = [ [[package]] name = "oca-bundle-semantics" -version = "0.6.1" +version = "0.6.2" dependencies = [ "cascade", "convert_case", @@ -896,7 +896,7 @@ dependencies = [ [[package]] name = "oca-dag-semantics" -version = "0.6.1" +version = "0.6.2" dependencies = [ "dyn-clonable", "indexmap 1.9.3", @@ -911,7 +911,7 @@ dependencies = [ [[package]] name = "oca-file" -version = "0.6.1" +version = "0.6.2" dependencies = [ "clap 4.4.8", "convert_case", @@ -933,7 +933,7 @@ dependencies = [ [[package]] name = "oca-file-semantics" -version = "0.6.1" +version = "0.6.2" dependencies = [ "clap 4.4.8", "convert_case", @@ -954,7 +954,7 @@ dependencies = [ [[package]] name = "oca-file-transformation" -version = "0.6.1" +version = "0.6.2" dependencies = [ "clap 4.4.8", "convert_case", @@ -975,7 +975,7 @@ dependencies = [ [[package]] name = "oca-rs" -version = "0.6.1" +version = "0.6.2" dependencies = [ "dyn-clonable", "isolang", @@ -1584,7 +1584,7 @@ dependencies = [ [[package]] name = "tests-integration" -version = "0.6.1" +version = "0.6.2" dependencies = [ "oca-rs", ] @@ -1617,7 +1617,7 @@ dependencies = [ [[package]] name = "transformation-file" -version = "0.6.1" +version = "0.6.2" dependencies = [ "indexmap 1.9.3", "oca-ast-transformation", diff --git a/oca-file/Cargo.toml b/oca-file/Cargo.toml index c72fa7e..93ac4dd 100644 --- a/oca-file/Cargo.toml +++ b/oca-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-file" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["Marcin Olichwiruk ", "Robert Mitwicki ", "Michał Pietrus "] license = "EUPL-1.2" @@ -18,8 +18,8 @@ pest = "2.5.1" pest_derive = "2.5.1" pretty_assertions = "1.3.0" thiserror = "1.0.38" -oca-file-semantics = { version = "0.6.1", path = "../semantics/oca-file" } -oca-file-transformation = { version = "0.6.1", path = "../transformation/oca-file" } +oca-file-semantics = { version = "0.6.2", path = "../semantics/oca-file" } +oca-file-transformation = { version = "0.6.2", path = "../transformation/oca-file" } said = { version = "0.4.1", features = ["macros"] } log = "0.4.20" env_logger = "0.10.0" diff --git a/oca/Cargo.toml b/oca/Cargo.toml index 5895698..dae07eb 100644 --- a/oca/Cargo.toml +++ b/oca/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-rs" description = "OCA rust ecosytem facade" -version = "0.6.1" +version = "0.6.2" license = "EUPL-1.2" edition = "2021" authors = [ @@ -22,14 +22,14 @@ local-references = [] [dependencies] dyn-clonable = "0.9.0" isolang = "2.3.0" -oca-ast-semantics = { version = "0.6.1", path = "../semantics/oca-ast" } -oca-bundle-semantics = { version = "0.6.1", path = "../semantics/oca-bundle", features = [ +oca-ast-semantics = { version = "0.6.2", path = "../semantics/oca-ast" } +oca-bundle-semantics = { version = "0.6.2", path = "../semantics/oca-bundle", features = [ "format_overlay", ] } -oca-dag-semantics = { version = "0.6.1", path = "../semantics/oca-dag" } -oca-file-semantics = { version = "0.6.1", path = "../semantics/oca-file" } -oca-file = { version = "0.6.1", path = "../oca-file" } -transformation-file = { version = "0.6.1", path = "../transformation/transformation-file" } +oca-dag-semantics = { version = "0.6.2", path = "../semantics/oca-dag" } +oca-file-semantics = { version = "0.6.2", path = "../semantics/oca-file" } +oca-file = { version = "0.6.2", path = "../oca-file" } +transformation-file = { version = "0.6.2", path = "../transformation/transformation-file" } regex = "1.9.5" rusqlite = "0.29.0" said = { version = "0.4.1", features = ["macros"] } diff --git a/semantics/oca-ast/Cargo.toml b/semantics/oca-ast/Cargo.toml index 4dac83a..e86f5fa 100644 --- a/semantics/oca-ast/Cargo.toml +++ b/semantics/oca-ast/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-ast-semantics" description = "Library for handling Abstract Syntax Tree of OCA bundle" -version = "0.6.1" +version = "0.6.2" license = "EUPL-1.2" edition = "2021" authors = [ diff --git a/semantics/oca-bundle/Cargo.toml b/semantics/oca-bundle/Cargo.toml index 54cfe3d..834f38e 100644 --- a/semantics/oca-bundle/Cargo.toml +++ b/semantics/oca-bundle/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-bundle-semantics" description = "Rust implementation of Overlays Capture Architecture bundle" -version = "0.6.1" +version = "0.6.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-semantics = { version = "0.6.1", path = "../oca-ast" } +oca-ast-semantics = { version = "0.6.2", path = "../oca-ast" } paste = "1.0.11" piccolo = "0.1.1" regex = "1.5.4" diff --git a/semantics/oca-bundle/README.md b/semantics/oca-bundle/README.md index db7db25..bb5c929 100644 --- a/semantics/oca-bundle/README.md +++ b/semantics/oca-bundle/README.md @@ -39,7 +39,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -oca-bundle = "0.6.1" +oca-bundle = "0.6.2" ``` ### Build diff --git a/semantics/oca-dag/Cargo.toml b/semantics/oca-dag/Cargo.toml index a2a81db..0debd98 100644 --- a/semantics/oca-dag/Cargo.toml +++ b/semantics/oca-dag/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-dag-semantics" -version = "0.6.1" +version = "0.6.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-semantics = { version = "0.6.1", path = "../oca-ast" } -oca-bundle-semantics = { version = "0.6.1", path = "../oca-bundle", features = [ +oca-ast-semantics = { version = "0.6.2", path = "../oca-ast" } +oca-bundle-semantics = { version = "0.6.2", path = "../oca-bundle", features = [ "format_overlay", ] } said = { version = "0.4.1", features = ["macros"] } diff --git a/semantics/oca-file/Cargo.toml b/semantics/oca-file/Cargo.toml index 14ee327..88a94db 100644 --- a/semantics/oca-file/Cargo.toml +++ b/semantics/oca-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-file-semantics" -version = "0.6.1" +version = "0.6.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-semantics = { version = "0.6.1", path = "../oca-ast" } +oca-ast-semantics = { version = "0.6.2", path = "../oca-ast" } said = { version = "0.4.1", features = ["macros"] } log = "0.4.20" env_logger = "0.10.0" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index bfdc290..e41b948 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tests-integration" -version = "0.6.1" +version = "0.6.2" edition = "2021" publish = false diff --git a/transformation/ast/Cargo.toml b/transformation/ast/Cargo.toml index 0fab402..8c16176 100644 --- a/transformation/ast/Cargo.toml +++ b/transformation/ast/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oca-ast-transformation" description = "Library for handling Abstract Syntax Tree of OCA bundle" -version = "0.6.1" +version = "0.6.2" license = "EUPL-1.2" edition = "2021" authors = [ diff --git a/transformation/oca-file/Cargo.toml b/transformation/oca-file/Cargo.toml index 4849aa6..558a92e 100644 --- a/transformation/oca-file/Cargo.toml +++ b/transformation/oca-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oca-file-transformation" -version = "0.6.1" +version = "0.6.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-transformation = { version = "0.6.1", path = "../ast" } +oca-ast-transformation = { version = "0.6.2", path = "../ast" } said = { version = "0.4.1", features = ["macros"] } log = "0.4.20" env_logger = "0.10.0" diff --git a/transformation/transformation-file/Cargo.toml b/transformation/transformation-file/Cargo.toml index 66455f5..fa84866 100644 --- a/transformation/transformation-file/Cargo.toml +++ b/transformation/transformation-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "transformation-file" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["Marcin Olichwiruk ", "Robert Mitwicki ", "Michał Pietrus "] license = "EUPL-1.2" @@ -13,7 +13,7 @@ path = "src/lib.rs" [dependencies] indexmap = { version = "1.8.0", features = ["serde"]} -oca-ast-transformation = { version = "0.6.1", path = "../ast" } +oca-ast-transformation = { version = "0.6.2", path = "../ast" } said = { version = "0.4.1", features = ["macros"] } serde = { version = "1.0", features = ["derive"] } serde-value = "0.7.0"