Skip to content

Commit

Permalink
chore: release 0.6.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
olichwiruk committed Nov 15, 2024
1 parent 33cbe20 commit ef7e60d
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 35 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions oca-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oca-file"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
authors = ["Marcin Olichwiruk <[email protected]>", "Robert Mitwicki <[email protected]>", "Michał Pietrus <[email protected]>"]
license = "EUPL-1.2"
Expand All @@ -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.5.5", path = "../semantics/oca-file" }
oca-file-transformation = { version = "0.5.5", path = "../transformation/oca-file" }
oca-file-semantics = { version = "0.6.0", path = "../semantics/oca-file" }
oca-file-transformation = { version = "0.6.0", path = "../transformation/oca-file" }
said = { version = "0.4.1", features = ["macros"] }
log = "0.4.20"
env_logger = "0.10.0"
Expand Down
14 changes: 7 additions & 7 deletions oca/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oca-rs"
description = "OCA rust ecosytem facade"
version = "0.5.5"
version = "0.6.0"
license = "EUPL-1.2"
edition = "2021"
authors = [
Expand All @@ -22,14 +22,14 @@ local-references = []
[dependencies]
dyn-clonable = "0.9.0"
isolang = "2.3.0"
oca-ast-semantics = { version = "0.5.5", path = "../semantics/oca-ast" }
oca-bundle-semantics = { version = "0.5.5", path = "../semantics/oca-bundle", features = [
oca-ast-semantics = { version = "0.6.0", path = "../semantics/oca-ast" }
oca-bundle-semantics = { version = "0.6.0", path = "../semantics/oca-bundle", features = [
"format_overlay",
] }
oca-dag-semantics = { version = "0.5.5", path = "../semantics/oca-dag" }
oca-file-semantics = { version = "0.5.5", path = "../semantics/oca-file" }
oca-file = { version = "0.5.5", path = "../oca-file" }
transformation-file = { version = "0.5.5", path = "../transformation/transformation-file" }
oca-dag-semantics = { version = "0.6.0", path = "../semantics/oca-dag" }
oca-file-semantics = { version = "0.6.0", path = "../semantics/oca-file" }
oca-file = { version = "0.6.0", path = "../oca-file" }
transformation-file = { version = "0.6.0", path = "../transformation/transformation-file" }
regex = "1.9.5"
rusqlite = "0.29.0"
said = { version = "0.4.1", features = ["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion semantics/oca-ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oca-ast-semantics"
description = "Library for handling Abstract Syntax Tree of OCA bundle"
version = "0.5.5"
version = "0.6.0"
license = "EUPL-1.2"
edition = "2021"
authors = [
Expand Down
4 changes: 2 additions & 2 deletions semantics/oca-bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oca-bundle-semantics"
description = "Rust implementation of Overlays Capture Architecture bundle"
version = "0.5.5"
version = "0.6.0"
license = "EUPL-1.2"
edition = "2021"
authors = [
Expand Down Expand Up @@ -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.5.5", path = "../oca-ast" }
oca-ast-semantics = { version = "0.6.0", path = "../oca-ast" }
paste = "1.0.11"
piccolo = "0.1.1"
regex = "1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion semantics/oca-bundle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
oca-bundle = "0.5.5"
oca-bundle = "0.6.0"
```

### Build
Expand Down
6 changes: 3 additions & 3 deletions semantics/oca-dag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oca-dag-semantics"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
authors = [
"Marcin Olichwiruk <[email protected]>",
Expand All @@ -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.5.5", path = "../oca-ast" }
oca-bundle-semantics = { version = "0.5.5", path = "../oca-bundle", features = [
oca-ast-semantics = { version = "0.6.0", path = "../oca-ast" }
oca-bundle-semantics = { version = "0.6.0", path = "../oca-bundle", features = [
"format_overlay",
] }
said = { version = "0.4.1", features = ["macros"] }
Expand Down
4 changes: 2 additions & 2 deletions semantics/oca-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oca-file-semantics"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
authors = ["Marcin Olichwiruk <[email protected]>", "Robert Mitwicki <[email protected]>", "Michał Pietrus <[email protected]>"]
license = "EUPL-1.2"
Expand All @@ -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.5.5", path = "../oca-ast" }
oca-ast-semantics = { version = "0.6.0", path = "../oca-ast" }
said = { version = "0.4.1", features = ["macros"] }
log = "0.4.20"
env_logger = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tests-integration"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion transformation/ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oca-ast-transformation"
description = "Library for handling Abstract Syntax Tree of OCA bundle"
version = "0.5.5"
version = "0.6.0"
license = "EUPL-1.2"
edition = "2021"
authors = [
Expand Down
4 changes: 2 additions & 2 deletions transformation/oca-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oca-file-transformation"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
authors = ["Marcin Olichwiruk <[email protected]>", "Robert Mitwicki <[email protected]>", "Michał Pietrus <[email protected]>"]
license = "EUPL-1.2"
Expand All @@ -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.5.5", path = "../ast" }
oca-ast-transformation = { version = "0.6.0", path = "../ast" }
said = { version = "0.4.1", features = ["macros"] }
log = "0.4.20"
env_logger = "0.10.0"
Expand Down
4 changes: 2 additions & 2 deletions transformation/transformation-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "transformation-file"
version = "0.5.5"
version = "0.6.0"
edition = "2021"
authors = ["Marcin Olichwiruk <[email protected]>", "Robert Mitwicki <[email protected]>", "Michał Pietrus <[email protected]>"]
license = "EUPL-1.2"
Expand All @@ -13,7 +13,7 @@ path = "src/lib.rs"

[dependencies]
indexmap = { version = "1.8.0", features = ["serde"]}
oca-ast-transformation = { version = "0.5.5", path = "../ast" }
oca-ast-transformation = { version = "0.6.0", path = "../ast" }
said = { version = "0.4.1", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }
serde-value = "0.7.0"
Expand Down

0 comments on commit ef7e60d

Please sign in to comment.