Skip to content

Commit

Permalink
Bump version to 0.96
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Egger <[email protected]>
  • Loading branch information
therealprof committed Jan 10, 2025
1 parent b0d44af commit d310c07
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rhai-rusp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Daniel Egger <[email protected]>", "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"
Expand Down
2 changes: 1 addition & 1 deletion rhai-rusp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions rusp-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion rusp-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions rusp-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ 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"
```

Please note that as of v0.95, the library and the application have been split into two parts, `rusp-lib` and `rusp`. In order to seamlessly continue what is now `rusp-lib` you have three options:

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).

Expand Down

0 comments on commit d310c07

Please sign in to comment.