Skip to content

Commit

Permalink
Bump the version number to 0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
irh committed Jan 22, 2025
1 parent bb9f6a9 commit 3dad47c
Show file tree
Hide file tree
Showing 21 changed files with 77 additions and 77 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/bytecode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_bytecode"
version = "0.15.1"
version = "0.15.2"
description = "The bytecode compiler used by the Koto programming language"

authors.workspace = true
Expand All @@ -20,8 +20,8 @@ arc = ["koto_memory/arc"]
rc = ["koto_memory/rc"]

[dependencies]
koto_memory = { path = "../memory", version = "^0.15.1", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.1", default-features = false }
koto_memory = { path = "../memory", version = "^0.15.2", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.2", default-features = false }

circular-buffer = { workspace = true }
derive-name = { workspace = true }
Expand Down
20 changes: 10 additions & 10 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_cli"
version = "0.15.1"
version = "0.15.2"
description = "A CLI and script runner for the Koto programming language"

authors.workspace = true
Expand All @@ -24,15 +24,15 @@ name = "koto"
path = "src/main.rs"

[dependencies]
koto = { path = "../koto", version = "^0.15.1", default-features = false }
koto_color = { path = "../../libs/color", version = "^0.15.1", default-features = false }
koto_geometry = { path = "../../libs/geometry", version = "^0.15.1", default-features = false }
koto_json = { path = "../../libs/json", version = "^0.15.1", default-features = false }
koto_random = { path = "../../libs/random", version = "^0.15.1", default-features = false }
koto_regex = { path = "../../libs/regex", version = "^0.15.1", default-features = false }
koto_tempfile = { path = "../../libs/tempfile", version = "^0.15.1", default-features = false }
koto_toml = { path = "../../libs/toml", version = "^0.15.1", default-features = false }
koto_yaml = { path = "../../libs/yaml", version = "^0.15.1", default-features = false }
koto = { path = "../koto", version = "^0.15.2", default-features = false }
koto_color = { path = "../../libs/color", version = "^0.15.2", default-features = false }
koto_geometry = { path = "../../libs/geometry", version = "^0.15.2", default-features = false }
koto_json = { path = "../../libs/json", version = "^0.15.2", default-features = false }
koto_random = { path = "../../libs/random", version = "^0.15.2", default-features = false }
koto_regex = { path = "../../libs/regex", version = "^0.15.2", default-features = false }
koto_tempfile = { path = "../../libs/tempfile", version = "^0.15.2", default-features = false }
koto_toml = { path = "../../libs/toml", version = "^0.15.2", default-features = false }
koto_yaml = { path = "../../libs/yaml", version = "^0.15.2", default-features = false }

anyhow = { workspace = true }
home = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_derive"
version = "0.15.1"
version = "0.15.2"
description = "Macros for working with the Koto programming language"

authors.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/koto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto"
version = "0.15.1"
version = "0.15.2"
description = "A simple, expressive, embeddable programming language"

authors.workspace = true
Expand All @@ -21,9 +21,9 @@ rc = ["koto_runtime/rc"]


[dependencies]
koto_bytecode = { path = "../bytecode", version = "^0.15.1", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.1", default-features = false }
koto_runtime = { path = "../runtime", version = "^0.15.1", default-features = false }
koto_bytecode = { path = "../bytecode", version = "^0.15.2", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.2", default-features = false }
koto_runtime = { path = "../runtime", version = "^0.15.2", default-features = false }

thiserror = { workspace = true }

Expand Down
6 changes: 3 additions & 3 deletions crates/koto/examples/poetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_poetry"
version = "0.15.1"
version = "0.15.2"
autobins = false
publish = false

Expand All @@ -13,8 +13,8 @@ name = "poetry"
path = "src/main.rs"

[dependencies]
koto = { path = "../../", version = "^0.15.1" }
koto_random = { path = "../../../../libs/random", version = "^0.15.1" }
koto = { path = "../../", version = "^0.15.2" }
koto_random = { path = "../../../../libs/random", version = "^0.15.2" }

anyhow = { workspace = true }
hotwatch = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/koto/examples/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_wasm"
version = "0.15.1"
version = "0.15.2"
publish = false

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_lexer"
version = "0.15.1"
version = "0.15.2"
description = "The lexer used by the Koto programming language"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_memory"
version = "0.15.1"
version = "0.15.2"
description = "Memory management utilities used by the Koto programming language"

authors.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_parser"
version = "0.15.1"
version = "0.15.2"
description = "The parser used by the Koto programming language"

authors.workspace = true
Expand All @@ -23,8 +23,8 @@ rc = ["koto_memory/rc"]
panic_on_parser_error = []

[dependencies]
koto_lexer = { path = "../lexer", version = "^0.15.1" }
koto_memory = { path = "../memory", version = "^0.15.1", default-features = false }
koto_lexer = { path = "../lexer", version = "^0.15.2" }
koto_memory = { path = "../memory", version = "^0.15.2", default-features = false }

derive-name = { workspace = true }
smallvec = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_runtime"
version = "0.15.1"
version = "0.15.2"
description = "The runtime used by the Koto programming language"

authors.workspace = true
Expand All @@ -20,11 +20,11 @@ arc = ["koto_memory/arc", "koto_derive/arc"]
rc = ["koto_memory/rc", "koto_derive/rc"]

[dependencies]
koto_bytecode = { path = "../bytecode", version = "^0.15.1", default-features = false }
koto_derive = { path = "../derive", version = "^0.15.1", default-features = false }
koto_lexer = { path = "../lexer", version = "^0.15.1" }
koto_memory = { path = "../memory", version = "^0.15.1", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.1", default-features = false }
koto_bytecode = { path = "../bytecode", version = "^0.15.2", default-features = false }
koto_derive = { path = "../derive", version = "^0.15.2", default-features = false }
koto_lexer = { path = "../lexer", version = "^0.15.2" }
koto_memory = { path = "../memory", version = "^0.15.2", default-features = false }
koto_parser = { path = "../parser", version = "^0.15.2", default-features = false }

downcast-rs = { workspace = true }
indexmap = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/serialize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_serialize"
version = "0.15.1"
version = "0.15.2"
description = "Serde serialization support for the Koto programming language"

authors.workspace = true
Expand All @@ -24,5 +24,5 @@ serde = { workspace = true }

[dependencies.koto_runtime]
path = "../../crates/runtime"
version = "^0.15.1"
version = "^0.15.2"
default-features = false
6 changes: 3 additions & 3 deletions crates/test_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_test_utils"
version = "0.15.1"
version = "0.15.2"
description = "Testing utilities for the Koto programming language"

authors.workspace = true
Expand All @@ -25,10 +25,10 @@ pulldown-cmark = { workspace = true }

[dependencies.koto_bytecode]
path = "../../crates/bytecode"
version = "^0.15.1"
version = "^0.15.2"
default-features = false

[dependencies.koto_runtime]
path = "../../crates/runtime"
version = "^0.15.1"
version = "^0.15.2"
default-features = false
4 changes: 2 additions & 2 deletions libs/color/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "koto_color"
version = "0.15.1"
version = "0.15.2"
description = "A Koto library containing simple color utilities"

authors.workspace = true
Expand All @@ -25,7 +25,7 @@ palette = { workspace = true }

[dependencies.koto_runtime]
path = "../../crates/runtime"
version = "^0.15.1"
version = "^0.15.2"
default-features = false

[dev-dependencies]
Expand Down
Loading

0 comments on commit 3dad47c

Please sign in to comment.