Skip to content

Commit 9163f79

Browse files
committed
Release 0.12.3
1 parent ac6f484 commit 9163f79

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

crates/rune-cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-cli"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63"
@@ -23,8 +23,8 @@ codespan-reporting = "0.11.1"
2323
anyhow = { version = "1.0.49", features = ["std"] }
2424
structopt = { version = "0.3.25", default-features = false, features = ["wrap_help", "suggestions", "color"] }
2525

26-
rune = { version = "0.12.2", path = "../rune", features = ["workspace"] }
27-
rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["full", "experiments", "capture-io"] }
26+
rune = { version = "0.12.3", path = "../rune", features = ["workspace"] }
27+
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments", "capture-io"] }
2828

2929
[build-dependencies]
3030
anyhow = "1.0.49"

crates/rune-languageserver/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-languageserver"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63"
@@ -27,8 +27,8 @@ tracing-appender = "0.2.2"
2727
tracing-subscriber = "0.3.15"
2828
ropey = "1.5.0"
2929

30-
rune = { version = "0.12.2", path = "../rune" }
31-
rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["full", "experiments"] }
30+
rune = { version = "0.12.3", path = "../rune" }
31+
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments"] }
3232

3333
[build-dependencies]
3434
anyhow = "1.0.60"

crates/rune-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-macros"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63"
@@ -19,7 +19,7 @@ quote = "1.0.10"
1919
proc-macro2 = { version = "1.0.32", features = ["span-locations"] }
2020

2121
[dev-dependencies]
22-
rune = { version = "0.12.2", path = "../rune" }
22+
rune = { version = "0.12.3", path = "../rune" }
2323

2424
[lib]
2525
proc-macro = true

crates/rune-modules/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-modules"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63"
@@ -41,7 +41,7 @@ toml = { version = "0.5.8", optional = true }
4141
nanorand = { version = "0.6.1", optional = true, features = ["getrandom"] }
4242
parking_lot = { version = "0.11.2", optional = true }
4343

44-
rune = { version = "0.12.2", path = "../rune" }
44+
rune = { version = "0.12.3", path = "../rune" }
4545

4646
[package.metadata.docs.rs]
4747
all-features = true

crates/rune-modules/src/experiments/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["experiments"] }
10+
//! rune-modules = { version = "0.12.3", features = ["experiments"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["fs"] }
10+
//! rune-modules = { version = "0.12.3", features = ["fs"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/http.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["http", "json"] }
10+
//! rune-modules = { version = "0.12.3", features = ["http", "json"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/json.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["json"] }
10+
//! rune-modules = { version = "0.12.3", features = ["json"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["process"] }
10+
//! rune-modules = { version = "0.12.3", features = ["process"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/rand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! Add the following to your `Cargo.toml`:
99
//!
1010
//! ```toml
11-
//! rune-modules = { version = "0.12.2", features = ["rand"] }
11+
//! rune-modules = { version = "0.12.3", features = ["rand"] }
1212
//! ```
1313
//!
1414
//! Install it into your context:

crates/rune-modules/src/signal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["signal"] }
10+
//! rune-modules = { version = "0.12.3", features = ["signal"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/time.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["time"] }
10+
//! rune-modules = { version = "0.12.3", features = ["time"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/toml.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! Add the following to your `Cargo.toml`:
88
//!
99
//! ```toml
10-
//! rune-modules = { version = "0.12.2", features = ["toml"] }
10+
//! rune-modules = { version = "0.12.3", features = ["toml"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-wasm/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-wasm"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
description = "A WASM module for the Rune Language, an embeddable dynamic programming language for Rust."
@@ -20,9 +20,9 @@ js-sys = "0.3.61"
2020
anyhow = "1.0.70"
2121
gloo-utils = "0.1.6"
2222

23-
rune = { version = "0.12.2", path = "../rune" }
24-
rune-macros = { version = "=0.12.2", path = "../rune-macros" }
25-
rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"] }
23+
rune = { version = "0.12.3", path = "../rune" }
24+
rune-macros = { version = "=0.12.3", path = "../rune-macros" }
25+
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"] }
2626

2727
[dependencies.web-sys]
2828
version = "0.3.61"

crates/rune/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.63"
@@ -45,7 +45,7 @@ relative-path = { version = "1.6.0", optional = true, features = ["serde"] }
4545
serde-hashkey = { version = "0.4.0", optional = true }
4646
linked-hash-map = "0.5.6"
4747

48-
rune-macros = { version = "=0.12.2", path = "../rune-macros" }
48+
rune-macros = { version = "=0.12.3", path = "../rune-macros" }
4949

5050
[dev-dependencies]
5151
tokio = { version = "1.14.0", features = ["macros"] }

0 commit comments

Comments
 (0)