diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 3a69e0946..bfb94047e 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -24,8 +24,8 @@ codespan-reporting = "0.11.1" anyhow = { version = "1.0.49", features = ["std"] } structopt = { version = "0.3.25", default-features = false, features = ["wrap_help", "suggestions", "color"] } -rune = {version = "0.10.1", path = "../rune"} -rune-modules = {version = "0.10.1", path = "../rune-modules", features = ["full", "experiments", "capture-io"]} +rune = {version = "0.10.2", path = "../rune"} +rune-modules = {version = "0.10.2", path = "../rune-modules", features = ["full", "experiments", "capture-io"]} [build-dependencies] anyhow = "1.0.49" diff --git a/crates/rune-languageserver/Cargo.toml b/crates/rune-languageserver/Cargo.toml index 5aa515c38..adbf24116 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -27,8 +27,8 @@ log = "0.4.14" log4rs = "1.0.0" ropey = "1.3.1" -rune = {version = "0.10.1", path = "../rune"} -rune-modules = {version = "0.10.1", path = "../rune-modules", features = ["full", "experiments"]} +rune = {version = "0.10.2", path = "../rune"} +rune-modules = {version = "0.10.2", path = "../rune-modules", features = ["full", "experiments"]} [build-dependencies] anyhow = "1.0.49" diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index 55b913fb2..89c80751a 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -20,7 +20,7 @@ quote = "1.0.10" proc-macro2 = { version = "1.0.32", features = ["span-locations"] } [dev-dependencies] -rune = {version = "0.10.1", path = "../rune"} +rune = {version = "0.10.2", path = "../rune"} [lib] proc-macro = true diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 6e6804bc2..b53675868 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -42,7 +42,7 @@ toml = { version = "0.5.8", optional = true } nanorand = { version = "0.6.1", optional = true, features = ["getrandom"] } parking_lot = { version = "0.11.2", optional = true } -rune = {version = "0.10.1", path = "../rune"} +rune = {version = "0.10.2", path = "../rune"} [package.metadata.docs.rs] all-features = true diff --git a/crates/rune-modules/src/core.rs b/crates/rune-modules/src/core.rs index 4897b8912..05bec571c 100644 --- a/crates/rune-modules/src/core.rs +++ b/crates/rune-modules/src/core.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["test"] } +//! rune-modules = { version = "0.10.2", features = ["test"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/experiments/mod.rs b/crates/rune-modules/src/experiments/mod.rs index 1ccce60b0..6f58968ef 100644 --- a/crates/rune-modules/src/experiments/mod.rs +++ b/crates/rune-modules/src/experiments/mod.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["experiments"] } +//! rune-modules = { version = "0.10.2", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fmt.rs b/crates/rune-modules/src/fmt.rs index 9a9b69af1..8166eaaea 100644 --- a/crates/rune-modules/src/fmt.rs +++ b/crates/rune-modules/src/fmt.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["fmt"] } +//! rune-modules = { version = "0.10.2", features = ["fmt"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index 9de237489..8816c0527 100644 --- a/crates/rune-modules/src/fs.rs +++ b/crates/rune-modules/src/fs.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["fs"] } +//! rune-modules = { version = "0.10.2", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index fc1afb290..de9ce283a 100644 --- a/crates/rune-modules/src/http.rs +++ b/crates/rune-modules/src/http.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["http", "json"] } +//! rune-modules = { version = "0.10.2", features = ["http", "json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/io.rs b/crates/rune-modules/src/io.rs index d0ff73f46..84dcc3920 100644 --- a/crates/rune-modules/src/io.rs +++ b/crates/rune-modules/src/io.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["io"] } +//! rune-modules = { version = "0.10.2", features = ["io"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/json.rs b/crates/rune-modules/src/json.rs index 5a58f6041..1c052d3aa 100644 --- a/crates/rune-modules/src/json.rs +++ b/crates/rune-modules/src/json.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["json"] } +//! rune-modules = { version = "0.10.2", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/macros.rs b/crates/rune-modules/src/macros.rs index ecbfa4993..186a5da20 100644 --- a/crates/rune-modules/src/macros.rs +++ b/crates/rune-modules/src/macros.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["macros"] } +//! rune-modules = { version = "0.10.2", features = ["macros"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index b1f9878a0..0b455e17e 100644 --- a/crates/rune-modules/src/process.rs +++ b/crates/rune-modules/src/process.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["process"] } +//! rune-modules = { version = "0.10.2", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index f3c35780c..0e2169bfc 100644 --- a/crates/rune-modules/src/rand.rs +++ b/crates/rune-modules/src/rand.rs @@ -8,7 +8,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["rand"] } +//! rune-modules = { version = "0.10.2", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index 35ba29054..086e7eb8d 100644 --- a/crates/rune-modules/src/signal.rs +++ b/crates/rune-modules/src/signal.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["signal"] } +//! rune-modules = { version = "0.10.2", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/test.rs b/crates/rune-modules/src/test.rs index 1f290e525..b56c755a0 100644 --- a/crates/rune-modules/src/test.rs +++ b/crates/rune-modules/src/test.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["test"] } +//! rune-modules = { version = "0.10.2", features = ["test"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index b5ef28fa6..c43133e06 100644 --- a/crates/rune-modules/src/time.rs +++ b/crates/rune-modules/src/time.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["time"] } +//! rune-modules = { version = "0.10.2", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index 054be51a6..cc352ce83 100644 --- a/crates/rune-modules/src/toml.rs +++ b/crates/rune-modules/src/toml.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.10.1", features = ["toml"] } +//! rune-modules = { version = "0.10.2", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index 6e96fad1f..437d25c1d 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -21,9 +21,9 @@ wasm-bindgen-futures = "0.4.28" js-sys = "0.3.55" anyhow = "1.0.49" -rune = {version = "0.10.1", path = "../rune", features = []} -rune-macros = {version = "0.10.1", path = "../rune-macros"} -rune-modules = {version = "0.10.1", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]} +rune = {version = "0.10.2", path = "../rune", features = []} +rune-macros = {version = "0.10.2", path = "../rune-macros"} +rune-modules = {version = "0.10.2", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]} [dependencies.web-sys] version = "0.3.55" diff --git a/crates/rune-wasm/package-lock.json b/crates/rune-wasm/package-lock.json index 62e69bab1..8a6df4aa9 100644 --- a/crates/rune-wasm/package-lock.json +++ b/crates/rune-wasm/package-lock.json @@ -307,7 +307,7 @@ "dev": true }, "node_modules/wasm-pack": { - "version": "0.10.1", + "version": "0.10.2", "resolved": "https://registry.npmjs.org/wasm-pack/-/wasm-pack-0.10.1.tgz", "integrity": "sha512-bw480KaaJQhL6UX8wAm6YCO497uaULDrsvUey3EB86dKAfFc6qCGVN1kItcwUklEeufonwo9mwz9/fy9xLOPtQ==", "dev": true, @@ -555,7 +555,7 @@ "dev": true }, "wasm-pack": { - "version": "0.10.1", + "version": "0.10.2", "resolved": "https://registry.npmjs.org/wasm-pack/-/wasm-pack-0.10.1.tgz", "integrity": "sha512-bw480KaaJQhL6UX8wAm6YCO497uaULDrsvUey3EB86dKAfFc6qCGVN1kItcwUklEeufonwo9mwz9/fy9xLOPtQ==", "dev": true, diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index a85c0afd4..039d1e3af 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.10.1" +version = "0.10.2" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -39,7 +39,7 @@ anyhow = "1.0.49" twox-hash = { version = "1.6.1", default-features = false } num-bigint = "0.4.3" -rune-macros = {version = "0.10.1", path = "../rune-macros"} +rune-macros = {version = "0.10.2", path = "../rune-macros"} [dev-dependencies] tokio = { version = "1.14.0", features = ["macros"] }