Skip to content

Commit

Permalink
Bump to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Oct 10, 2023
1 parent 9cf1e37 commit f376ae5
Show file tree
Hide file tree
Showing 21 changed files with 35 additions and 237 deletions.
202 changes: 0 additions & 202 deletions UPGRADING.md

This file was deleted.

4 changes: 2 additions & 2 deletions crates/rune-alloc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "rune-alloc-macros"
version = "0.12.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
description = "Macros for the Rune Language, an embeddable dynamic programming language for Rust."
description = "Macros for alloc crate of the Rune Language, an embeddable dynamic programming language for Rust."
documentation = "https://docs.rs/rune"
readme = "README.md"
homepage = "https://github.com/rune-rs/rune"
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-alloc-macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<br>
<br>

Macros for the Rune Language, an embeddable dynamic programming language for Rust.
Macros for alloc crate of the Rune Language, an embeddable dynamic programming language for Rust.

<br>

Expand Down
2 changes: 1 addition & 1 deletion crates/rune-alloc-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//! <br>
//! <br>
//!
//! Macros for the Rune Language, an embeddable dynamic programming language for Rust.
//! Macros for alloc crate of the Rune Language, an embeddable dynamic programming language for Rust.
//!
//! <br>
//!
Expand Down
4 changes: 2 additions & 2 deletions crates/rune-alloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-alloc"
version = "0.12.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -19,7 +19,7 @@ std = ["alloc", "ahash/std", "serde?/std"]
alloc = []

[dependencies]
rune-alloc-macros = { version = "=0.12.3", path = "../rune-alloc-macros" }
rune-alloc-macros = { version = "=0.13.0", path = "../rune-alloc-macros" }

serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
ahash = { version = "0.8.3", default-features = false }
Expand Down
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.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -14,8 +14,8 @@ keywords = ["language", "scripting", "scripting-language"]
categories = ["parser-implementations"]

[dependencies]
rune = { version = "0.12.3", path = "../rune", features = ["cli"] }
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments"] }
rune = { version = "0.13.0", path = "../rune", features = ["cli"] }
rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] }

[build-dependencies]
anyhow = "1.0.71"
Expand Down
4 changes: 2 additions & 2 deletions crates/rune-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune-core"
version = "0.12.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -20,7 +20,7 @@ std = ["alloc", "rune-alloc/std"]
alloc = ["serde/alloc", "rune-alloc/alloc"]

[dependencies]
rune-alloc = { path = "../rune-alloc", version = "0.12.3", default-features = false, features = ["serde"] }
rune-alloc = { version = "0.13.0", 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"] }
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.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -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.12.3", path = "../rune", features = ["languageserver"] }
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["full", "experiments"] }
rune = { version = "0.13.0", path = "../rune", features = ["languageserver"] }
rune-modules = { version = "0.13.0", path = "../rune-modules", features = ["full", "experiments"] }

[build-dependencies]
anyhow = "1.0.71"
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.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -14,7 +14,7 @@ keywords = ["language", "scripting", "scripting-language"]
categories = ["parser-implementations"]

[dependencies]
rune-core = { version = "=0.12.3", path = "../rune-core", features = ["std"] }
rune-core = { version = "=0.13.0", path = "../rune-core", features = ["std"] }
syn = { version = "2.0.16", features = ["full"] }
quote = "1.0.27"
proc-macro2 = "1.0.56"
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.3"
version = "0.13.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand Down Expand Up @@ -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.12.3", path = "../rune" }
rune = { version = "0.13.0", path = "../rune" }

[package.metadata.docs.rs]
all-features = true
2 changes: 1 addition & 1 deletion crates/rune-modules/src/experiments.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.3", features = ["experiments"] }
//! rune-modules = { version = "0.13.0", features = ["experiments"] }
//! ```
//!
//! 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.3", features = ["fs"] }
//! rune-modules = { version = "0.13.0", 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.3", features = ["http", "json"] }
//! rune-modules = { version = "0.13.0", features = ["http", "json"] }
//! ```
//!
//! 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.3", features = ["json"] }
//! rune-modules = { version = "0.13.0", features = ["json"] }
//! ```
//!
//! 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.3", features = ["process"] }
//! rune-modules = { version = "0.13.0", 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.3", features = ["rand"] }
//! rune-modules = { version = "0.13.0", features = ["rand"] }
//! ```
//!
//! Install it into your context:
Expand Down
Loading

0 comments on commit f376ae5

Please sign in to comment.