Skip to content

Commit 1f5ee3f

Browse files
committed
Release 0.13.1
1 parent f15d478 commit 1f5ee3f

File tree

18 files changed

+32
-32
lines changed

18 files changed

+32
-32
lines changed

crates/rune-alloc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-alloc-macros"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"

crates/rune-alloc/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-alloc"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -19,7 +19,7 @@ std = ["alloc", "ahash/std", "serde?/std"]
1919
alloc = []
2020

2121
[dependencies]
22-
rune-alloc-macros = { version = "=0.13.0", path = "../rune-alloc-macros" }
22+
rune-alloc-macros = { version = "=0.13.1", path = "../rune-alloc-macros" }
2323

2424
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
2525
ahash = { version = "0.8.3", default-features = false }

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.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -14,8 +14,8 @@ keywords = ["language", "scripting", "scripting-language"]
1414
categories = ["parser-implementations"]
1515

1616
[dependencies]
17-
rune = { version = "0.13.0", path = "../rune", features = ["cli"] }
18-
rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] }
17+
rune = { version = "0.13.1", path = "../rune", features = ["cli"] }
18+
rune-modules = { version = "0.13.1", path = "../rune-modules", features = ["full", "experiments"] }
1919

2020
[build-dependencies]
2121
anyhow = "1.0.71"

crates/rune-core/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-core"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -20,7 +20,7 @@ std = ["alloc", "rune-alloc/std"]
2020
alloc = ["serde/alloc", "rune-alloc/alloc"]
2121

2222
[dependencies]
23-
rune-alloc = { version = "0.13.0", path = "../rune-alloc", default-features = false, features = ["serde"] }
23+
rune-alloc = { version = "0.13.1", path = "../rune-alloc", default-features = false, features = ["serde"] }
2424

2525
twox-hash = { version = "1.6.3", default-features = false }
2626
serde = { version = "1.0.163", default-features = false, features = ["derive"] }

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.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -20,8 +20,8 @@ tracing = "0.1.37"
2020
tracing-appender = "0.2.2"
2121
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2222

23-
rune = { version = "0.13.0", path = "../rune", features = ["languageserver"] }
24-
rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] }
23+
rune = { version = "0.13.1", path = "../rune", features = ["languageserver"] }
24+
rune-modules = { version = "0.13.1", path = "../rune-modules", features = ["full", "experiments"] }
2525

2626
[build-dependencies]
2727
anyhow = "1.0.71"

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.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -14,7 +14,7 @@ keywords = ["language", "scripting", "scripting-language"]
1414
categories = ["parser-implementations"]
1515

1616
[dependencies]
17-
rune-core = { version = "=0.13.0", path = "../rune-core", features = ["std"] }
17+
rune-core = { version = "=0.13.1", path = "../rune-core", features = ["std"] }
1818
syn = { version = "2.0.16", features = ["full"] }
1919
quote = "1.0.27"
2020
proc-macro2 = "1.0.56"

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.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -36,7 +36,7 @@ serde_json = { version = "1.0.96", optional = true }
3636
toml = { version = "0.7.3", optional = true }
3737
nanorand = { version = "0.7.0", optional = true, features = ["getrandom"] }
3838

39-
rune = { version = "0.13.0", path = "../rune" }
39+
rune = { version = "0.13.1", path = "../rune" }
4040

4141
[package.metadata.docs.rs]
4242
all-features = true

crates/rune-modules/src/experiments.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.13.0", features = ["experiments"] }
10+
//! rune-modules = { version = "0.13.1", 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.13.0", features = ["fs"] }
10+
//! rune-modules = { version = "0.13.1", 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.13.0", features = ["http", "json"] }
10+
//! rune-modules = { version = "0.13.1", 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.13.0", features = ["json"] }
10+
//! rune-modules = { version = "0.13.1", 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.13.0", features = ["process"] }
10+
//! rune-modules = { version = "0.13.1", 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.13.0", features = ["rand"] }
11+
//! rune-modules = { version = "0.13.1", features = ["rand"] }
1212
//! ```
1313
//!
1414
//! Install it into your context:

crates/rune-modules/src/signal.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.13.0", features = ["signal"] }
10+
//! rune-modules = { version = "0.13.1", features = ["signal"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/time.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.13.0", features = ["time"] }
10+
//! rune-modules = { version = "0.13.1", features = ["time"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-modules/src/toml.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.13.0", features = ["toml"] }
10+
//! rune-modules = { version = "0.13.1", features = ["toml"] }
1111
//! ```
1212
//!
1313
//! Install it into your context:

crates/rune-wasm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune-wasm"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -14,9 +14,9 @@ keywords = ["language", "scripting", "scripting-language"]
1414
categories = ["parser-implementations"]
1515

1616
[dependencies]
17-
rune = { version = "0.13.0", path = "../rune", features = ["capture-io"] }
18-
rune-macros = { version = "=0.13.0", path = "../rune-macros" }
19-
rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] }
17+
rune = { version = "0.13.1", path = "../rune", features = ["capture-io"] }
18+
rune-macros = { version = "=0.13.1", path = "../rune-macros" }
19+
rune-modules = { version = "0.13.1", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] }
2020

2121
serde = { version = "1.0.163", features = ["derive"] }
2222
wasm-bindgen = { version = "0.2.85", features = ["serde-serialize"] }

crates/rune/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -29,9 +29,9 @@ std = ["alloc", "num/std", "serde/std", "rune-core/std", "rune-alloc/std", "musl
2929
alloc = ["anyhow", "rune-alloc/alloc", "rune-core/alloc", "once_cell/alloc", "serde/alloc"]
3030

3131
[dependencies]
32-
rune-macros = { version = "=0.13.0", path = "../rune-macros" }
33-
rune-core = { version = "=0.13.0", path = "../rune-core", features = ["musli"] }
34-
rune-alloc = { version = "0.13.0", path = "../rune-alloc", features = ["serde"], default-features = false }
32+
rune-macros = { version = "=0.13.1", path = "../rune-macros" }
33+
rune-core = { version = "=0.13.1", path = "../rune-core", features = ["musli"] }
34+
rune-alloc = { version = "0.13.1", path = "../rune-alloc", features = ["serde"], default-features = false }
3535

3636
futures-core = { version = "0.3.28", default-features = false }
3737
futures-util = { version = "0.3.28", default-features = false, features = ["alloc"] }

0 commit comments

Comments
 (0)