From 51051549d3ca5e3843f0a75ea0a102047b6329fd Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Sat, 11 Jun 2022 10:19:57 +0200 Subject: [PATCH] Release 0.12.0 --- crates/rune-cli/Cargo.toml | 6 +++--- crates/rune-languageserver/Cargo.toml | 6 +++--- crates/rune-macros/Cargo.toml | 4 ++-- crates/rune-modules/Cargo.toml | 4 ++-- crates/rune-modules/src/core.rs | 2 +- crates/rune-modules/src/experiments/mod.rs | 2 +- crates/rune-modules/src/fmt.rs | 2 +- crates/rune-modules/src/fs.rs | 2 +- crates/rune-modules/src/http.rs | 2 +- crates/rune-modules/src/io.rs | 2 +- crates/rune-modules/src/json.rs | 2 +- crates/rune-modules/src/macros.rs | 2 +- crates/rune-modules/src/process.rs | 2 +- crates/rune-modules/src/rand.rs | 2 +- crates/rune-modules/src/signal.rs | 2 +- crates/rune-modules/src/test.rs | 2 +- crates/rune-modules/src/time.rs | 2 +- crates/rune-modules/src/toml.rs | 2 +- crates/rune-wasm/Cargo.toml | 8 ++++---- crates/rune-wasm/package-lock.json | 2 +- crates/rune/Cargo.toml | 4 ++-- 21 files changed, 31 insertions(+), 31 deletions(-) diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 609600ad9..54a3d99b3 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.11.0" +version = "0.12.0" 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.11.0", path = "../rune", features = ["workspace"] } -rune-modules = { version = "0.11.0", path = "../rune-modules", features = ["full", "experiments", "capture-io"] } +rune = { version = "0.12.0", path = "../rune", features = ["workspace"] } +rune-modules = { version = "0.12.0", 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 bc36b6d36..4933ecd16 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.11.0" +version = "0.12.0" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -28,8 +28,8 @@ tracing-appender = "0.2.0" tracing-subscriber = "0.3.3" ropey = "1.3.1" -rune = {version = "0.11.0", path = "../rune"} -rune-modules = {version = "0.11.0", path = "../rune-modules", features = ["full", "experiments"]} +rune = {version = "0.12.0", path = "../rune"} +rune-modules = {version = "0.12.0", 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 f912acbe7..1a340ad0b 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.11.0" +version = "0.12.0" 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.11.0", path = "../rune"} +rune = {version = "0.12.0", path = "../rune"} [lib] proc-macro = true diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 305bfe085..a53192f64 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.11.0" +version = "0.12.0" 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.11.0", path = "../rune"} +rune = {version = "0.12.0", 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 c4b75ba28..0ac2113ee 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.11.0", features = ["test"] } +//! rune-modules = { version = "0.12.0", 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 afd790313..3558f8849 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.11.0", features = ["experiments"] } +//! rune-modules = { version = "0.12.0", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fmt.rs b/crates/rune-modules/src/fmt.rs index 38f5fbd0b..c7f6bff4e 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.11.0", features = ["fmt"] } +//! rune-modules = { version = "0.12.0", features = ["fmt"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index 987d47c09..f04532761 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.11.0", features = ["fs"] } +//! rune-modules = { version = "0.12.0", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index 496e5868c..a384153c4 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.11.0", features = ["http", "json"] } +//! rune-modules = { version = "0.12.0", 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 614768845..adb5ef1b7 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.11.0", features = ["io"] } +//! rune-modules = { version = "0.12.0", features = ["io"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/json.rs b/crates/rune-modules/src/json.rs index aec0f38b7..70f189e36 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.11.0", features = ["json"] } +//! rune-modules = { version = "0.12.0", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/macros.rs b/crates/rune-modules/src/macros.rs index 1f8be0573..64c033306 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.11.0", features = ["macros"] } +//! rune-modules = { version = "0.12.0", features = ["macros"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index 38d2180f1..68ba0e1ca 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.11.0", features = ["process"] } +//! rune-modules = { version = "0.12.0", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index d320eae5b..304fea945 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.11.0", features = ["rand"] } +//! rune-modules = { version = "0.12.0", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index d230b9952..65f739cc8 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.11.0", features = ["signal"] } +//! rune-modules = { version = "0.12.0", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/test.rs b/crates/rune-modules/src/test.rs index 89a32a097..a66b82e9c 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.11.0", features = ["test"] } +//! rune-modules = { version = "0.12.0", features = ["test"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index bab314367..ecaf4bd61 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.11.0", features = ["time"] } +//! rune-modules = { version = "0.12.0", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index a5d307e19..bf52ee4ff 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.11.0", features = ["toml"] } +//! rune-modules = { version = "0.12.0", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index e58f7f3aa..4613a72df 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.11.0" +version = "0.12.0" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -21,9 +21,9 @@ wasm-bindgen-futures = "0.4.29" js-sys = "0.3.56" anyhow = "1.0.53" -rune = {version = "0.11.0", path = "../rune", features = []} -rune-macros = {version = "0.11.0", path = "../rune-macros"} -rune-modules = {version = "0.11.0", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]} +rune = {version = "0.12.0", path = "../rune", features = []} +rune-macros = {version = "0.12.0", path = "../rune-macros"} +rune-modules = {version = "0.12.0", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]} [dependencies.web-sys] version = "0.3.56" diff --git a/crates/rune-wasm/package-lock.json b/crates/rune-wasm/package-lock.json index 354cd1bf0..475c407bf 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.11.0", + "version": "0.12.0", "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 2d7469bd1..ad76e19fd 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.11.0" +version = "0.12.0" authors = ["John-John Tedro "] license = "MIT/Apache-2.0" edition = "2021" @@ -45,7 +45,7 @@ semver = { version = "1.0.4", optional = true, features = ["serde"] } relative-path = { version = "1.6.0", optional = true, features = ["serde"] } serde-hashkey = { version = "0.4.0", optional = true } -rune-macros = {version = "0.11.0", path = "../rune-macros"} +rune-macros = {version = "0.12.0", path = "../rune-macros"} [dev-dependencies] tokio = { version = "1.14.0", features = ["macros"] }