From 6d9b1bfccbe58829799dc8cdfdc1f050de9778d1 Mon Sep 17 00:00:00 2001 From: Neal DeBuhr Date: Mon, 21 Feb 2022 21:41:30 +0000 Subject: [PATCH] Increment minor version - bump to v0.11.0 --- README.md | 2 +- sim/Cargo.toml | 6 +++--- sim_derive/Cargo.toml | 2 +- simx/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 22778e9..a0ce130 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ For use in Rust code bases, leverage the package as a `cargo` dependency ```toml [dependencies] -sim = "0.10" +sim = "0.11" ``` 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 f0aafb7..f7ce529 100644 --- a/sim/Cargo.toml +++ b/sim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim" -version = "0.10.0" +version = "0.11.0" edition = "2018" license = "MIT OR Apache-2.0" authors = ["Neal DeBuhr "] @@ -28,8 +28,8 @@ rand_pcg = { version = "0.3", features = ["serde1"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.8" -sim_derive = { version = "0.10", path = "../sim_derive" } -simx = { version = "0.10", path = "../simx", optional = true } +sim_derive = { version = "0.11", path = "../sim_derive" } +simx = { version = "0.11", path = "../simx", optional = true } thiserror = "1.0" wasm-bindgen = "0.2" web-sys = { version = "0.3", features = [ "console" ] } diff --git a/sim_derive/Cargo.toml b/sim_derive/Cargo.toml index 2fc515c..00d8aa6 100644 --- a/sim_derive/Cargo.toml +++ b/sim_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sim_derive" -version = "0.10.0" +version = "0.11.0" edition = "2018" license = "MIT OR Apache-2.0" authors = ["Neal DeBuhr "] diff --git a/simx/Cargo.toml b/simx/Cargo.toml index 0e18eb9..8eff7df 100644 --- a/simx/Cargo.toml +++ b/simx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simx" -version = "0.10.0" +version = "0.11.0" edition = "2018" license = "MIT OR Apache-2.0" authors = ["Neal DeBuhr "]