Skip to content

Commit

Permalink
Prepare release 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Feb 14, 2023
1 parent 0534772 commit b00bcb1
Show file tree
Hide file tree
Showing 22 changed files with 30 additions and 525 deletions.
488 changes: 0 additions & 488 deletions CHANGELOG.md

This file was deleted.

7 changes: 0 additions & 7 deletions FUTURE_OPTIMIZATIONS.md

This file was deleted.

6 changes: 3 additions & 3 deletions crates/rune-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-cli"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand All @@ -25,8 +25,8 @@ codespan-reporting = "0.11.1"
anyhow = { version = "1.0.49", features = ["std"] }
structopt = { version = "0.3.25", default-features = false, features = ["wrap_help", "suggestions", "color"] }

rune = { version = "0.12.0", path = "../rune", features = ["workspace"] }
rune-modules = { version = "0.12.0", path = "../rune-modules", features = ["full", "experiments", "capture-io"] }
rune = { version = "0.12.1", path = "../rune", features = ["workspace"] }
rune-modules = { version = "0.12.1", path = "../rune-modules", features = ["full", "experiments", "capture-io"] }

[build-dependencies]
anyhow = "1.0.49"
Expand Down
6 changes: 3 additions & 3 deletions crates/rune-languageserver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-languageserver"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -29,8 +29,8 @@ tracing-appender = "0.2.2"
tracing-subscriber = "0.3.15"
ropey = "1.5.0"

rune = {version = "0.12.0", path = "../rune"}
rune-modules = {version = "0.12.0", path = "../rune-modules", features = ["full", "experiments"]}
rune = {version = "0.12.1", path = "../rune"}
rune-modules = {version = "0.12.1", path = "../rune-modules", features = ["full", "experiments"]}

[build-dependencies]
anyhow = "1.0.60"
4 changes: 2 additions & 2 deletions crates/rune-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-macros"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand All @@ -21,7 +21,7 @@ quote = "1.0.10"
proc-macro2 = { version = "1.0.32", features = ["span-locations"] }

[dev-dependencies]
rune = {version = "0.12.0", path = "../rune"}
rune = {version = "0.12.1", path = "../rune"}

[lib]
proc-macro = true
Expand Down
4 changes: 2 additions & 2 deletions crates/rune-modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-modules"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -43,7 +43,7 @@ toml = { version = "0.5.8", optional = true }
nanorand = { version = "0.6.1", optional = true, features = ["getrandom"] }
parking_lot = { version = "0.11.2", optional = true }

rune = {version = "0.12.0", path = "../rune"}
rune = {version = "0.12.1", path = "../rune"}

[package.metadata.docs.rs]
all-features = true
2 changes: 1 addition & 1 deletion crates/rune-modules/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["test"] }
//! rune-modules = { version = "0.12.1", features = ["test"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/experiments/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["experiments"] }
//! rune-modules = { version = "0.12.1", features = ["experiments"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["fmt"] }
//! rune-modules = { version = "0.12.1", features = ["fmt"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["fs"] }
//! rune-modules = { version = "0.12.1", features = ["fs"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["http", "json"] }
//! rune-modules = { version = "0.12.1", features = ["http", "json"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["io"] }
//! rune-modules = { version = "0.12.1", features = ["io"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["json"] }
//! rune-modules = { version = "0.12.1", features = ["json"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["macros"] }
//! rune-modules = { version = "0.12.1", features = ["macros"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["process"] }
//! rune-modules = { version = "0.12.1", features = ["process"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["rand"] }
//! rune-modules = { version = "0.12.1", features = ["rand"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["signal"] }
//! rune-modules = { version = "0.12.1", features = ["signal"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["test"] }
//! rune-modules = { version = "0.12.1", features = ["test"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["time"] }
//! rune-modules = { version = "0.12.1", features = ["time"] }
//! ```
//!
//! Install it into your context:
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/src/toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.12.0", features = ["toml"] }
//! rune-modules = { version = "0.12.1", features = ["toml"] }
//! ```
//!
//! Install it into your context:
Expand Down
8 changes: 4 additions & 4 deletions crates/rune-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-wasm"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand All @@ -22,9 +22,9 @@ js-sys = "0.3.61"
anyhow = "1.0.69"
gloo-utils = "0.1.6"

rune = {version = "0.12.0", path = "../rune"}
rune-macros = {version = "0.12.0", path = "../rune-macros"}
rune-modules = {version = "0.12.0", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]}
rune = {version = "0.12.1", path = "../rune"}
rune-macros = {version = "0.12.1", path = "../rune-macros"}
rune-modules = {version = "0.12.1", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]}

[dependencies.web-sys]
version = "0.3.61"
Expand Down
4 changes: 2 additions & 2 deletions crates/rune/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune"
version = "0.12.0"
version = "0.12.1"
authors = ["John-John Tedro <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -46,7 +46,7 @@ semver = { version = "1.0.4", optional = true, features = ["serde"] }
relative-path = { version = "1.6.0", optional = true, features = ["serde"] }
serde-hashkey = { version = "0.4.0", optional = true }

rune-macros = {version = "0.12.0", path = "../rune-macros"}
rune-macros = {version = "0.12.1", path = "../rune-macros"}
linked-hash-map = "0.5.6"

[dev-dependencies]
Expand Down

0 comments on commit b00bcb1

Please sign in to comment.