Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Oct 5, 2023
1 parent 82153b5 commit 98da981
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.0.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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.1.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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.0.0"
version = "0.2.1"
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
@@ -1,7 +1,7 @@
[package]
name = "zngur-cli"
description = "CLI of the Zngur, a Rust/C++ interoperability tool"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
license.workspace = true

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

[dependencies]
zngur = { version = "0.2.0", path = "../zngur" }
zngur = { version = "=0.2.1", 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
@@ -1,7 +1,7 @@
[package]
name = "zngur-def"
description = "Data types that define the structure of a zng file"
version = "0.2.0"
version = "0.2.1"
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
@@ -1,7 +1,7 @@
[package]
name = "zngur-generator"
description = "Generates Rust and C++ glue codes from the zng file"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
license.workspace = true

Expand All @@ -11,5 +11,5 @@ license.workspace = true
ariadne = "0.3.0"
chumsky = { version = "1.0.0-alpha.4", features = ["label"] }
iter_tools = "0.1.4"
zngur-parser = { version = "0.2.0", path = "../zngur-parser" }
zngur-def = { version = "0.2.0", path = "../zngur-def" }
zngur-parser = { version = "=0.2.1", path = "../zngur-parser" }
zngur-def = { version = "=0.2.1", path = "../zngur-def" }
4 changes: 2 additions & 2 deletions zngur-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zngur-parser"
description = "Parser of the zng file"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
license.workspace = true

Expand All @@ -11,4 +11,4 @@ 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.2.0", path = "../zngur-def" }
zngur-def = { version = "=0.2.1", path = "../zngur-def" }
4 changes: 2 additions & 2 deletions zngur/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "zngur"
description = "A Rust/C++ interoperability tool"
version = "0.2.0"
version = "0.2.1"
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.2.0", path = "../zngur-generator" }
zngur-generator = { version = "=0.2.1", path = "../zngur-generator" }

0 comments on commit 98da981

Please sign in to comment.