diff --git a/README.md b/README.md index 25ea863..8da9cc0 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ For use in Rust code bases, leverage the package as a `cargo` dependency ```toml [dependencies] -sim = "0.7" +sim = "0.8" ``` For use as a WebAssembly module in a JavaScript/TypeScript code base, leverage the package as a `npm` dependency diff --git a/sim/Cargo.toml b/sim/Cargo.toml index c1c848e..5706a93 100644 --- a/sim/Cargo.toml +++ b/sim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim" -version = "0.7.0" +version = "0.8.0" edition = "2018" license = "MIT OR Apache-2.0" authors = ["Neal DeBuhr "] @@ -34,7 +34,7 @@ serde_yaml = "0.8" thiserror = "1.0" wasm-bindgen = "0.2.63" web-sys = { version = "0.3", features = [ "console" ] } -sim_derive = { version = "0.7", path = "../sim_derive" } +sim_derive = { version = "0.8", path = "../sim_derive" } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires diff --git a/sim_derive/Cargo.toml b/sim_derive/Cargo.toml index 48a0bc5..d93e4d2 100644 --- a/sim_derive/Cargo.toml +++ b/sim_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim_derive" -version = "0.7.0" +version = "0.8.0" edition = "2018" license = "MIT OR Apache-2.0" authors = ["Neal DeBuhr "]