From 1f5ee3f4c163534b6c6e7d5acd643042d880300f Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Tue, 10 Oct 2023 21:47:46 +0200 Subject: [PATCH] Release 0.13.1 --- 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 95b3e575f..362e6c0b2 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.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" diff --git a/crates/rune-alloc/Cargo.toml b/crates/rune-alloc/Cargo.toml index b09c57a9b..5bc70c31b 100644 --- a/crates/rune-alloc/Cargo.toml +++ b/crates/rune-alloc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-alloc" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -19,7 +19,7 @@ std = ["alloc", "ahash/std", "serde?/std"] alloc = [] [dependencies] -rune-alloc-macros = { version = "=0.13.0", path = "../rune-alloc-macros" } +rune-alloc-macros = { version = "=0.13.1", path = "../rune-alloc-macros" } serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } ahash = { version = "0.8.3", default-features = false } diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 269590168..f218040fd 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -14,8 +14,8 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune = { version = "0.13.0", path = "../rune", features = ["cli"] } -rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] } +rune = { version = "0.13.1", path = "../rune", features = ["cli"] } +rune-modules = { version = "0.13.1", 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 d0302d0ae..6084fb88d 100644 --- a/crates/rune-core/Cargo.toml +++ b/crates/rune-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-core" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -20,7 +20,7 @@ std = ["alloc", "rune-alloc/std"] alloc = ["serde/alloc", "rune-alloc/alloc"] [dependencies] -rune-alloc = { version = "0.13.0", path = "../rune-alloc", default-features = false, features = ["serde"] } +rune-alloc = { version = "0.13.1", 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 2d6a20075..d5c22817e 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -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.0", path = "../rune", features = ["languageserver"] } -rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] } +rune = { version = "0.13.1", path = "../rune", features = ["languageserver"] } +rune-modules = { version = "0.13.1", 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 7a898418b..e7bd2b248 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -14,7 +14,7 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune-core = { version = "=0.13.0", path = "../rune-core", features = ["std"] } +rune-core = { version = "=0.13.1", 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 052bcabcf..eee142d63 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -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.0", path = "../rune" } +rune = { version = "0.13.1", 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 6ae639d99..9f9ed3b00 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.0", features = ["experiments"] } +//! rune-modules = { version = "0.13.1", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index 1eff5dee1..d2e88452e 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.0", features = ["fs"] } +//! rune-modules = { version = "0.13.1", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index c968a5f58..7195d46d1 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.0", features = ["http", "json"] } +//! rune-modules = { version = "0.13.1", 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 d64dda06a..44396c3fa 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.0", features = ["json"] } +//! rune-modules = { version = "0.13.1", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index cc6098282..f28ce4c75 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.0", features = ["process"] } +//! rune-modules = { version = "0.13.1", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index d2c76e5ef..07bf8f319 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.0", features = ["rand"] } +//! rune-modules = { version = "0.13.1", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index 3b57ab11e..0312cf524 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.0", features = ["signal"] } +//! rune-modules = { version = "0.13.1", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index 12d329489..5c52760a6 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.0", features = ["time"] } +//! rune-modules = { version = "0.13.1", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index 92b665643..e6102d00a 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.0", features = ["toml"] } +//! rune-modules = { version = "0.13.1", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index 9ad89cdb5..39d71d90f 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -14,9 +14,9 @@ keywords = ["language", "scripting", "scripting-language"] categories = ["parser-implementations"] [dependencies] -rune = { version = "0.13.0", path = "../rune", features = ["capture-io"] } -rune-macros = { version = "=0.13.0", path = "../rune-macros" } -rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] } +rune = { version = "0.13.1", path = "../rune", features = ["capture-io"] } +rune-macros = { version = "=0.13.1", path = "../rune-macros" } +rune-modules = { version = "0.13.1", 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 106cfb772..09b7e5116 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.13.0" +version = "0.13.1" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.70" @@ -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.0", path = "../rune-macros" } -rune-core = { version = "=0.13.0", path = "../rune-core", features = ["musli"] } -rune-alloc = { version = "0.13.0", path = "../rune-alloc", features = ["serde"], default-features = false } +rune-macros = { version = "=0.13.1", path = "../rune-macros" } +rune-core = { version = "=0.13.1", path = "../rune-core", features = ["musli"] } +rune-alloc = { version = "0.13.1", 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"] }