Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
Levitanus committed Mar 31, 2024
1 parent eb5f5e4 commit 946c10f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ These are the dependencies:

```toml
[dependencies]
rea-rs = "0.1.2"
rea-rs-low = "0.1.2" # optional
rea-rs-macros = "0.1.2"
rea-rs = "0.1.3"
rea-rs-low = "0.1.3" # optional
rea-rs-macros = "0.1.3"
```

But, actually, all medium- and low-level functionality is still existing in the [Reaper](https://levitanus.github.io/rea-rs-doc/rea_rs/reaper/struct.Reaper.html) object. Just use `Reaper::low`, `Reaper::medium` and `Reaper::medium_session`. The Common entry point should look like this:
Expand Down
2 changes: 1 addition & 1 deletion low/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ license = "MIT"
name = "rea-rs-low"
readme = "../README.md"
repository = "https://github.com/helgoboss/reaper-rs"
version = "0.1.3"
version = "0.1.31"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "rea-rs-macros"
readme = "../README.md"
repository = "https://github.com/levitanus/rea-rs"
version = "0.1.3"
version = "0.1.31"

[dependencies]
darling = "0.10.2"
Expand Down
2 changes: 1 addition & 1 deletion rea-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rea-rs"
readme = "../README.md"
repository = "https://github.com/Levitanus/rea-rs"
version = "0.1.3"
version = "0.1.31"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2021"
name = "reaper-test-extension-plugin"
publish = false
version = "0.1.0"
version = "0.1.31"

[dependencies]
bitvec = "1.0"
Expand All @@ -11,7 +11,7 @@ float_eq = "1.0"
log = "0.4"
rea-rs = {version = "0.1.3", path = "../rea-rs"}
rea-rs-low = {version = "0.1.3", path = "../low"}
rea-rs-macros = {version = "0.1.2"}
rea-rs-macros = {version = "0.1.3",path = "../macros"}
rea-rs-test = {version = "0.1.3", path = "../rea-rs-test"}

[lib]
Expand Down

0 comments on commit 946c10f

Please sign in to comment.