Skip to content

Commit 89571f3

Browse files
author
Daniel Egger
committed
Bump version to 0.99.0
Signed-off-by: Daniel Egger <[email protected]>
1 parent 560b8ac commit 89571f3

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ members = [
88

99
[workspace.dependencies]
1010
rhai = { version = "1.16", features = ["serde", "internals"] }
11-
rusp-lib = { version = "0.98", path = "rusp-lib" }
12-
rhai-rusp = { version = "0.98", path = "rhai-rusp" }
11+
rusp-lib = { version = "0.99", path = "rusp-lib" }
12+
rhai-rusp = { version = "0.99", path = "rhai-rusp" }
1313

1414
anyhow = "1.0"
1515
serde = "1.0"

rhai-rusp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Daniel Egger <[email protected]>", "Axiros GmbH"]
33
description = "Rhai bindings for the Rust USP toolkit"
44
name = "rhai-rusp"
5-
version = "0.98.0"
5+
version = "0.99.0"
66
edition = "2021"
77
license = "BSD-3-Clause"
88
readme = "README.md"

rhai-rusp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Rhai interpreter. To use `rhai-rusp` as a library, you simply need to add the
1515

1616
```
1717
[dependencies]
18-
rhai-rusp = "0.98"
18+
rhai-rusp = "0.99"
1919
```
2020

2121
The usual steps to embed a Rhai interpreter with rusp support are:

rusp-bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "BSD-3-Clause"
66
name = "rusp"
77
readme = "README.md"
88
repository = "https://github.com/axiros/rusp"
9-
version = "0.98.1"
9+
version = "0.99.0"
1010

1111
[badges]
1212
[badges.travis-ci]

rusp-bin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ print (msg)'
5757

5858
More examples can be found at [the Rhai-Rusp repository](https://github.com/axiros/rusp/tree/master/rhai-rusp).
5959

60-
Starting with version 0.98.1, `rusp-run` also supports a `-c` switch, which can
60+
Starting with version 0.99, `rusp-run` also supports a `-c` switch, which can
6161
be used to process a Rhai script embedded in a ```/** */``` comment to e.g. turn
6262
a comment into an array representing a USP Message or Record in a unittest.
6363

rusp-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "BSD-3-Clause"
66
name = "rusp-lib"
77
readme = "README.md"
88
repository = "https://github.com/axiros/rusp"
9-
version = "0.98.0"
9+
version = "0.99.0"
1010

1111
[badges]
1212
[badges.travis-ci]

rusp-lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ The crate contains is the library part or Rusp, which contains:
2020

2121
```
2222
[dependencies]
23-
rusp-lib = "0.98"
23+
rusp-lib = "0.99"
2424
quick-protobuf = "0.8"
2525
```
2626

2727
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:
2828

2929
1. Rename all uses of the `rusp` namespace into `rusp_lib` in your source code
3030
2. Put a `use rusp_lib as rusp;` line at the top of each code file using the `rusp` namespace
31-
2. Rename the library via `Cargo.toml` by declaring the dependency as `rusp = { version = "0.98", package = "rusp-lib" }`
31+
2. Rename the library via `Cargo.toml` by declaring the dependency as `rusp = { version = "0.99", package = "rusp-lib" }`
3232

3333
Documentation and examples for its use can be found on [docs.rs](https://docs.rs/rusp/latest/rusp-lib/index.html).
3434

0 commit comments

Comments
 (0)