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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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:

0 commit comments

Comments
 (0)