From aac3bb7aefb916e038def89706a17754100d37fb Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Sat, 6 Jul 2024 08:43:05 +0200 Subject: [PATCH] Release 0.13.3 --- crates/rune-alloc-macros/Cargo.toml | 2 +- crates/rune-alloc/Cargo.toml | 4 ++-- crates/rune-cli/Cargo.toml | 6 +++--- crates/rune-core/Cargo.toml | 4 ++-- crates/rune-languageserver/Cargo.toml | 6 +++--- crates/rune-macros/Cargo.toml | 4 ++-- crates/rune-modules/Cargo.toml | 4 ++-- crates/rune-modules/src/experiments.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 | 8 ++++---- 18 files changed, 32 insertions(+), 32 deletions(-) diff --git a/crates/rune-alloc-macros/Cargo.toml b/crates/rune-alloc-macros/Cargo.toml index 96754ab60..69836f858 100644 --- a/crates/rune-alloc-macros/Cargo.toml +++ b/crates/rune-alloc-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-alloc-macros" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" diff --git a/crates/rune-alloc/Cargo.toml b/crates/rune-alloc/Cargo.toml index b250e4eb9..b9f851ee5 100644 --- a/crates/rune-alloc/Cargo.toml +++ b/crates/rune-alloc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-alloc" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -19,7 +19,7 @@ std = ["alloc", "ahash/std", "serde?/std"] alloc = [] [dependencies] -rune-alloc-macros = { version = "=0.13.2", path = "../rune-alloc-macros" } +rune-alloc-macros = { version = "=0.13.3", path = "../rune-alloc-macros" } serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } ahash = { version = "0.8.11", default-features = false } diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 3de27a3c5..bf253f1f2 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -14,8 +14,8 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune = { version = "0.13.2", path = "../rune", features = ["cli"] } -rune-modules = { version = "0.13.2", path = "../rune-modules", features = ["full", "experiments"] } +rune = { version = "0.13.3", path = "../rune", features = ["cli"] } +rune-modules = { version = "0.13.3", path = "../rune-modules", features = ["full", "experiments"] } [build-dependencies] anyhow = "1.0.71" diff --git a/crates/rune-core/Cargo.toml b/crates/rune-core/Cargo.toml index 52ce1d1fb..eca57abc3 100644 --- a/crates/rune-core/Cargo.toml +++ b/crates/rune-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-core" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -20,7 +20,7 @@ std = ["alloc", "rune-alloc/std"] alloc = ["serde/alloc", "rune-alloc/alloc"] [dependencies] -rune-alloc = { version = "0.13.2", path = "../rune-alloc", default-features = false, features = ["serde"] } +rune-alloc = { version = "0.13.3", path = "../rune-alloc", default-features = false, features = ["serde"] } twox-hash = { version = "1.6.3", default-features = false } serde = { version = "1.0.163", default-features = false, features = ["derive"] } diff --git a/crates/rune-languageserver/Cargo.toml b/crates/rune-languageserver/Cargo.toml index be6831b16..b20def26d 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -20,8 +20,8 @@ tracing = "0.1.37" tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -rune = { version = "0.13.2", path = "../rune", features = ["languageserver"] } -rune-modules = { version = "0.13.2", path = "../rune-modules", features = ["full", "experiments"] } +rune = { version = "0.13.3", path = "../rune", features = ["languageserver"] } +rune-modules = { version = "0.13.3", path = "../rune-modules", features = ["full", "experiments"] } [build-dependencies] anyhow = "1.0.71" diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index 145c74aa3..5aa6d147b 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -14,7 +14,7 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune-core = { version = "=0.13.2", path = "../rune-core", features = ["std"] } +rune-core = { version = "=0.13.3", path = "../rune-core", features = ["std"] } syn = { version = "2.0.16", features = ["full"] } quote = "1.0.27" proc-macro2 = "1.0.56" diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 17e00ef1c..1a8d09383 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -36,7 +36,7 @@ serde_json = { version = "1.0.96", optional = true } toml = { version = "0.7.3", optional = true } nanorand = { version = "0.7.0", optional = true, features = ["getrandom"] } -rune = { version = "0.13.2", path = "../rune" } +rune = { version = "0.13.3", path = "../rune" } [package.metadata.docs.rs] all-features = true diff --git a/crates/rune-modules/src/experiments.rs b/crates/rune-modules/src/experiments.rs index f6c1966e5..1a8677375 100644 --- a/crates/rune-modules/src/experiments.rs +++ b/crates/rune-modules/src/experiments.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.13.2", features = ["experiments"] } +//! rune-modules = { version = "0.13.3", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index cef546e81..93128cffc 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.13.2", features = ["fs"] } +//! rune-modules = { version = "0.13.3", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index 539a70d43..96039af4e 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.13.2", features = ["http", "json"] } +//! rune-modules = { version = "0.13.3", 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 9ed604cfd..f09e2741d 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.13.2", features = ["json"] } +//! rune-modules = { version = "0.13.3", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index 3794f22bf..009a88419 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.13.2", features = ["process"] } +//! rune-modules = { version = "0.13.3", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index cfbb7ccb2..2edfb7179 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.13.2", features = ["rand"] } +//! rune-modules = { version = "0.13.3", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index 3bc09cd68..3de31c8cc 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.13.2", features = ["signal"] } +//! rune-modules = { version = "0.13.3", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index 32ab69020..22ddf9205 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.13.2", features = ["time"] } +//! rune-modules = { version = "0.13.3", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index 44979817d..49965a7ab 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.13.2", features = ["toml"] } +//! rune-modules = { version = "0.13.3", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index ee28b5f86..d75d2c9a0 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -14,9 +14,9 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune = { version = "0.13.2", path = "../rune", features = ["capture-io"] } -rune-macros = { version = "=0.13.2", path = "../rune-macros" } -rune-modules = { version = "0.13.2", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] } +rune = { version = "0.13.3", path = "../rune", features = ["capture-io"] } +rune-macros = { version = "=0.13.3", path = "../rune-macros" } +rune-modules = { version = "0.13.3", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] } serde = { version = "1.0.163", features = ["derive"] } wasm-bindgen = { version = "0.2.85", features = ["serde-serialize"] } diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index d3fd37879..bed0940aa 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.13.2" +version = "0.13.3" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.74" @@ -29,9 +29,9 @@ std = ["alloc", "num/std", "serde/std", "rune-core/std", "rune-alloc/std", "musl alloc = ["anyhow", "rune-alloc/alloc", "rune-core/alloc", "once_cell/alloc", "serde/alloc"] [dependencies] -rune-macros = { version = "=0.13.2", path = "../rune-macros" } -rune-core = { version = "=0.13.2", path = "../rune-core", features = ["musli"] } -rune-alloc = { version = "0.13.2", path = "../rune-alloc", features = ["serde"], default-features = false } +rune-macros = { version = "=0.13.3", path = "../rune-macros" } +rune-core = { version = "=0.13.3", path = "../rune-core", features = ["musli"] } +rune-alloc = { version = "0.13.3", path = "../rune-alloc", features = ["serde"], default-features = false } futures-core = { version = "0.3.28", default-features = false } futures-util = { version = "0.3.28", default-features = false, features = ["alloc"] }