diff --git a/README.md b/README.md index 1abd3b8..2df92ae 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/low/Cargo.toml b/low/Cargo.toml index 34244e4..fe4edb7 100644 --- a/low/Cargo.toml +++ b/low/Cargo.toml @@ -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 = [] diff --git a/macros/Cargo.toml b/macros/Cargo.toml index f3a333e..3c7217b 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -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" diff --git a/rea-rs/Cargo.toml b/rea-rs/Cargo.toml index d2b02de..9e4207f 100644 --- a/rea-rs/Cargo.toml +++ b/rea-rs/Cargo.toml @@ -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 diff --git a/test/Cargo.toml b/test/Cargo.toml index 3d64685..f21c9ab 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -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" @@ -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]