From d310c0730a251bae9502e8b1b2bda46910a5d03f Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Fri, 10 Jan 2025 16:45:00 +0100 Subject: [PATCH] Bump version to 0.96 Signed-off-by: Daniel Egger --- Cargo.toml | 4 ++-- rhai-rusp/Cargo.toml | 2 +- rhai-rusp/README.md | 2 +- rusp-bin/Cargo.toml | 6 +++--- rusp-lib/Cargo.toml | 2 +- rusp-lib/README.md | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bb5fe30..ac187c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,8 +8,8 @@ members = [ [workspace.dependencies] rhai = { version = "1.16", features = ["serde"] } -rusp-lib = { version = "0.95", path = "rusp-lib" } -rhai-rusp-lib = { version = "0.95", path = "rhai-rusp-lib" } +rusp-lib = { version = "0.96", path = "rusp-lib" } +rhai-rusp = { version = "0.96", path = "rhai-rusp" } anyhow = "1.0" serde = "1.0" diff --git a/rhai-rusp/Cargo.toml b/rhai-rusp/Cargo.toml index 703c001..f64bb2e 100644 --- a/rhai-rusp/Cargo.toml +++ b/rhai-rusp/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Daniel Egger ", "Axiros GmbH"] description = "Rhai bindings for the Rust USP toolkit" name = "rhai-rusp" -version = "0.95.0" +version = "0.96.0" edition = "2021" license = "BSD-3-Clause" readme = "README.md" diff --git a/rhai-rusp/README.md b/rhai-rusp/README.md index bbcc6b7..bda544d 100644 --- a/rhai-rusp/README.md +++ b/rhai-rusp/README.md @@ -15,7 +15,7 @@ Rhai interpreter . To use `rhai-rusp` as a library, you simply need to add the ``` [dependencies] -rhai-rusp = "0.95.0" +rhai-rusp = "0.96.0" ``` The usual steps to embed a Rhai interpreter with rusp support are: diff --git a/rusp-bin/Cargo.toml b/rusp-bin/Cargo.toml index d608374..c1e1e13 100644 --- a/rusp-bin/Cargo.toml +++ b/rusp-bin/Cargo.toml @@ -6,7 +6,7 @@ license = "BSD-3-Clause" name = "rusp" readme = "README.md" repository = "https://github.com/axiros/rusp" -version = "0.95.0" +version = "0.96.0" [badges] [badges.travis-ci] @@ -17,8 +17,8 @@ rhai = { workspace = true } anyhow = { workspace = true } clap = { version = "4", default-features = false, features = ["std", "derive"] } quick-protobuf = { workspace = true } -rusp-lib = { version = "0.95", path = "../rusp-lib" } -rhai-rusp = { version = "0.95", path = "../rhai-rusp" } +rusp-lib = { workspace = true } +rhai-rusp = { workspace = true } serde = { workspace = true } serde_derive = { workspace = true } serde_json = { workspace = true } diff --git a/rusp-lib/Cargo.toml b/rusp-lib/Cargo.toml index fc0e803..189baea 100644 --- a/rusp-lib/Cargo.toml +++ b/rusp-lib/Cargo.toml @@ -6,7 +6,7 @@ license = "BSD-3-Clause" name = "rusp-lib" readme = "README.md" repository = "https://github.com/axiros/rusp" -version = "0.95.0" +version = "0.96.0" [badges] [badges.travis-ci] diff --git a/rusp-lib/README.md b/rusp-lib/README.md index 223edf3..68156bd 100644 --- a/rusp-lib/README.md +++ b/rusp-lib/README.md @@ -20,7 +20,7 @@ The crate contains is the library part or Rusp, which contains: ``` [dependencies] -rusp-lib = "0.95.0" +rusp-lib = "0.96.0" quick-protobuf = "0.8" ``` @@ -28,7 +28,7 @@ Please note that as of v0.95, the library and the application have been split in 1. Rename all uses of the `rusp` namespace into `rusp_lib` in your source code 2. Put a `use rusp_lib as rusp;` line at the top of each code file using the `rusp` namespace -2. Rename the library via `Cargo.toml` by declaring the dependency as `rusp = { version = "0.95", package = "rusp-lib" }` +2. Rename the library via `Cargo.toml` by declaring the dependency as `rusp = { version = "0.96", package = "rusp-lib" }` Documentation and examples for its use can be found on [docs.rs](https://docs.rs/rusp/latest/rusp-lib/index.html).