Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Oct 10, 2023
1 parent 8d4b0d0 commit 43b997e
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 31 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion examples/cxx_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-cxx_demo"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/memory_management/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-memory_management"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/osmium/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-osmium"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/rayon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-rayon"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/rustyline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-rustyline"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-simple"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-tutorial"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
publish = false
Expand Down
4 changes: 2 additions & 2 deletions zngur-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "zngur-cli"
description = "CLI of the Zngur, a Rust/C++ interoperability tool"
readme = "../README.md"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true

Expand All @@ -14,5 +14,5 @@ bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
zngur = { version = "=0.3.0", path = "../zngur" }
zngur = { version = "=0.4.0", path = "../zngur" }
clap = { version = "4.3.12", features = ["derive"] }
2 changes: 1 addition & 1 deletion zngur-def/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "zngur-def"
description = "Data types that define the structure of a zng file"
readme = "../README.md"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true

Expand Down
6 changes: 3 additions & 3 deletions zngur-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
name = "zngur-generator"
description = "Generates Rust and C++ glue codes from the zng file"
readme = "../README.md"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
iter_tools = "0.1.4"
zngur-parser = { version = "=0.3.0", path = "../zngur-parser" }
zngur-def = { version = "=0.3.0", path = "../zngur-def" }
zngur-parser = { version = "=0.4.0", path = "../zngur-parser" }
zngur-def = { version = "=0.4.0", path = "../zngur-def" }
4 changes: 2 additions & 2 deletions zngur-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "zngur-parser"
description = "Parser of the zng file"
readme = "../README.md"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true

Expand All @@ -12,7 +12,7 @@ license.workspace = true
ariadne = "0.3.0"
chumsky = { version = "=1.0.0-alpha.4", features = ["label"] }
iter_tools = "0.1.4"
zngur-def = { version = "=0.3.0", path = "../zngur-def" }
zngur-def = { version = "=0.4.0", path = "../zngur-def" }

[dev-dependencies]
expect-test = "1.4.1"
Expand Down
4 changes: 2 additions & 2 deletions zngur/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name = "zngur"
description = "A Rust/C++ interoperability tool"
readme = "../README.md"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
zngur-generator = { version = "=0.3.0", path = "../zngur-generator" }
zngur-generator = { version = "=0.4.0", path = "../zngur-generator" }

0 comments on commit 43b997e

Please sign in to comment.