From df0f719518579d22c8f6d96aa9c4ea61774d8d78 Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Fri, 9 Jun 2023 08:52:55 +0200 Subject: [PATCH] Release 0.12.4 --- 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/experiments/mod.rs | 2 +- crates/rune-modules/src/fs.rs | 2 +- crates/rune-modules/src/http.rs | 2 +- crates/rune-modules/src/json.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/time.rs | 2 +- crates/rune-modules/src/toml.rs | 2 +- crates/rune-wasm/Cargo.toml | 8 ++++---- crates/rune/Cargo.toml | 4 ++-- 15 files changed, 25 insertions(+), 25 deletions(-) diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index be921490a..405c73e5c 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -23,8 +23,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.12.3", path = "../rune", features = ["workspace"] } -rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments", "capture-io"] } +rune = { version = "0.12.4", path = "../rune", features = ["workspace"] } +rune-modules = { version = "0.12.4", 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 b6a98ab0e..4dca15641 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -27,8 +27,8 @@ tracing-appender = "0.2.2" tracing-subscriber = "0.3.15" ropey = "1.5.0" -rune = { version = "0.12.3", path = "../rune" } -rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments"] } +rune = { version = "0.12.4", path = "../rune" } +rune-modules = { version = "0.12.4", path = "../rune-modules", features = ["full", "experiments"] } [build-dependencies] anyhow = "1.0.60" diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index 96e9c625c..a73cdd416 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -19,7 +19,7 @@ quote = "1.0.10" proc-macro2 = { version = "1.0.32", features = ["span-locations"] } [dev-dependencies] -rune = { version = "0.12.3", path = "../rune" } +rune = { version = "0.12.4", path = "../rune" } [lib] proc-macro = true diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 6d1a7be86..9179c0ae3 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -41,7 +41,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.12.3", path = "../rune" } +rune = { version = "0.12.4", path = "../rune" } [package.metadata.docs.rs] all-features = true diff --git a/crates/rune-modules/src/experiments/mod.rs b/crates/rune-modules/src/experiments/mod.rs index 26294c165..cf0e6a26d 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.12.3", features = ["experiments"] } +//! rune-modules = { version = "0.12.4", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index 9adc8246d..02405b221 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.12.3", features = ["fs"] } +//! rune-modules = { version = "0.12.4", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index 112cc4556..bc62ffb44 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.12.3", features = ["http", "json"] } +//! rune-modules = { version = "0.12.4", features = ["http", "json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/json.rs b/crates/rune-modules/src/json.rs index c20842fcf..3ec98ac6a 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.12.3", features = ["json"] } +//! rune-modules = { version = "0.12.4", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index a892d2c86..5e2c4b211 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.12.3", features = ["process"] } +//! rune-modules = { version = "0.12.4", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index 6a405ba3e..89dc31c05 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.12.3", features = ["rand"] } +//! rune-modules = { version = "0.12.4", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index 4d4a38cee..444ec7e51 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.12.3", features = ["signal"] } +//! rune-modules = { version = "0.12.4", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index 64ea756f9..df396fa39 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.12.3", features = ["time"] } +//! rune-modules = { version = "0.12.4", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index f7a2b265e..d6e28abee 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.12.3", features = ["toml"] } +//! rune-modules = { version = "0.12.4", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index 0a590ceb3..cc3b8e738 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" description = "A WASM module for the Rune Language, an embeddable dynamic programming language for Rust." @@ -20,9 +20,9 @@ js-sys = "0.3.61" anyhow = "1.0.70" gloo-utils = "0.1.6" -rune = { version = "0.12.3", path = "../rune" } -rune-macros = { version = "=0.12.3", path = "../rune-macros" } -rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"] } +rune = { version = "0.12.4", path = "../rune" } +rune-macros = { version = "=0.12.4", path = "../rune-macros" } +rune-modules = { version = "0.12.4", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"] } [dependencies.web-sys] version = "0.3.61" diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index 3049056de..918bcf833 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.12.3" +version = "0.12.4" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -45,7 +45,7 @@ relative-path = { version = "1.6.0", optional = true, features = ["serde"] } serde-hashkey = { version = "0.4.0", optional = true } linked-hash-map = "0.5.6" -rune-macros = { version = "=0.12.3", path = "../rune-macros" } +rune-macros = { version = "=0.12.4", path = "../rune-macros" } [dev-dependencies] tokio = { version = "1.14.0", features = ["macros"] }