From b6cf6dcb7516e5a86ba1d80b7f08022221e2fa2c Mon Sep 17 00:00:00 2001 From: Matheus Castello Date: Wed, 15 Nov 2023 13:11:05 -0300 Subject: [PATCH] cargo: Bump packages to release 0.3.0 Signed-off-by: Matheus Castello --- rnet-example/Cargo.toml | 4 ++-- rnet-gen/Cargo.toml | 4 ++-- rnet-macros/Cargo.toml | 2 +- rnet-tests/Cargo.toml | 4 ++-- rnet/Cargo.toml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/rnet-example/Cargo.toml b/rnet-example/Cargo.toml index 9e56919..738e3bb 100644 --- a/rnet-example/Cargo.toml +++ b/rnet-example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-example" -version = "0.2.0" +version = "0.3.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -8,5 +8,5 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -rnet = { version = "0.2.0", path = "../rnet" } +rnet = { version = "0.3.0", path = "../rnet" } linkme = "0.2.7" diff --git a/rnet-gen/Cargo.toml b/rnet-gen/Cargo.toml index 30242f0..372dfe3 100644 --- a/rnet-gen/Cargo.toml +++ b/rnet-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-gen" -version = "0.2.0" +version = "0.3.0" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -11,7 +11,7 @@ description = "Generator for rnet." [dependencies] libloading = "0.7.1" -rnet = { version = "0.2.0", path = "../rnet" } +rnet = { version = "0.3.0", path = "../rnet" } structopt = "0.3" anyhow = "1.0" heck = "0.3.3" diff --git a/rnet-macros/Cargo.toml b/rnet-macros/Cargo.toml index 800bba0..98efded 100644 --- a/rnet-macros/Cargo.toml +++ b/rnet-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-macros" -version = "0.2.0" +version = "0.3.0" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" diff --git a/rnet-tests/Cargo.toml b/rnet-tests/Cargo.toml index fb25dcd..3b9fa1b 100644 --- a/rnet-tests/Cargo.toml +++ b/rnet-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet-tests" -version = "0.2.0" +version = "0.3.0" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -12,5 +12,5 @@ description = "Tests for rnet." crate-type = ["cdylib"] [dependencies] -rnet = { version = "0.2.0", path = "../rnet" } +rnet = { version = "0.3.0", path = "../rnet" } linkme = "0.2.7" diff --git a/rnet/Cargo.toml b/rnet/Cargo.toml index 42cecf0..b4beda0 100644 --- a/rnet/Cargo.toml +++ b/rnet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnet" -version = "0.2.0" +version = "0.3.0" edition = "2018" readme = "../README.md" license = "MIT OR Apache-2.0" @@ -11,6 +11,6 @@ description = "Easily call into Rust from C# or other .net langauges." [dependencies] linkme = "0.2.7" -rnet-macros = { version = "0.2.0", path = "../rnet-macros" } +rnet-macros = { version = "0.3.0", path = "../rnet-macros" } uuid = { version = "0.8.2", optional = true } chrono = { version = "0.4.19", optional = true }