diff --git a/Cargo.lock b/Cargo.lock index 49275154..d1fa867c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -535,7 +535,7 @@ dependencies = [ [[package]] name = "koto" -version = "0.15.1" +version = "0.15.2" dependencies = [ "anyhow", "criterion2", @@ -551,7 +551,7 @@ dependencies = [ [[package]] name = "koto_bytecode" -version = "0.15.1" +version = "0.15.2" dependencies = [ "circular-buffer", "derive-name", @@ -565,7 +565,7 @@ dependencies = [ [[package]] name = "koto_cli" -version = "0.15.1" +version = "0.15.2" dependencies = [ "anyhow", "crossterm", @@ -591,7 +591,7 @@ dependencies = [ [[package]] name = "koto_color" -version = "0.15.1" +version = "0.15.2" dependencies = [ "derive_more", "koto_runtime", @@ -601,7 +601,7 @@ dependencies = [ [[package]] name = "koto_derive" -version = "0.15.1" +version = "0.15.2" dependencies = [ "proc-macro2", "quote", @@ -610,7 +610,7 @@ dependencies = [ [[package]] name = "koto_geometry" -version = "0.15.1" +version = "0.15.2" dependencies = [ "glam", "koto_runtime", @@ -619,7 +619,7 @@ dependencies = [ [[package]] name = "koto_json" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "koto_serialize", @@ -629,7 +629,7 @@ dependencies = [ [[package]] name = "koto_lexer" -version = "0.15.1" +version = "0.15.2" dependencies = [ "unicode-segmentation", "unicode-width 0.2.0", @@ -638,14 +638,14 @@ dependencies = [ [[package]] name = "koto_memory" -version = "0.15.1" +version = "0.15.2" dependencies = [ "parking_lot", ] [[package]] name = "koto_parser" -version = "0.15.1" +version = "0.15.2" dependencies = [ "derive-name", "koto_lexer", @@ -657,7 +657,7 @@ dependencies = [ [[package]] name = "koto_poetry" -version = "0.15.1" +version = "0.15.2" dependencies = [ "anyhow", "hotwatch", @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "koto_random" -version = "0.15.1" +version = "0.15.2" dependencies = [ "getrandom", "koto_derive", @@ -684,7 +684,7 @@ dependencies = [ [[package]] name = "koto_regex" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "koto_test_utils", @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "koto_runtime" -version = "0.15.1" +version = "0.15.2" dependencies = [ "chrono", "downcast-rs", @@ -715,7 +715,7 @@ dependencies = [ [[package]] name = "koto_serialize" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "serde", @@ -723,7 +723,7 @@ dependencies = [ [[package]] name = "koto_tempfile" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "koto_test_utils", @@ -732,7 +732,7 @@ dependencies = [ [[package]] name = "koto_test_utils" -version = "0.15.1" +version = "0.15.2" dependencies = [ "itertools", "koto_bytecode", @@ -742,7 +742,7 @@ dependencies = [ [[package]] name = "koto_toml" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "koto_serialize", @@ -752,7 +752,7 @@ dependencies = [ [[package]] name = "koto_wasm" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto", "wasm-bindgen", @@ -761,7 +761,7 @@ dependencies = [ [[package]] name = "koto_yaml" -version = "0.15.1" +version = "0.15.2" dependencies = [ "koto_runtime", "koto_serialize", diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index b01c3433..177377b1 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -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 @@ -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 } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 95b2c7f1..16ed7263 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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 @@ -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 } diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 9e30ef31..d608ecaa 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -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 diff --git a/crates/koto/Cargo.toml b/crates/koto/Cargo.toml index f27464d8..645a6ab2 100644 --- a/crates/koto/Cargo.toml +++ b/crates/koto/Cargo.toml @@ -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 @@ -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 } diff --git a/crates/koto/examples/poetry/Cargo.toml b/crates/koto/examples/poetry/Cargo.toml index 069d25d7..ef3f0fdf 100644 --- a/crates/koto/examples/poetry/Cargo.toml +++ b/crates/koto/examples/poetry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_poetry" -version = "0.15.1" +version = "0.15.2" autobins = false publish = false @@ -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 } diff --git a/crates/koto/examples/wasm/Cargo.toml b/crates/koto/examples/wasm/Cargo.toml index b2775735..e93203d1 100644 --- a/crates/koto/examples/wasm/Cargo.toml +++ b/crates/koto/examples/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_wasm" -version = "0.15.1" +version = "0.15.2" publish = false authors.workspace = true diff --git a/crates/lexer/Cargo.toml b/crates/lexer/Cargo.toml index 160554f6..fe2c8ff2 100644 --- a/crates/lexer/Cargo.toml +++ b/crates/lexer/Cargo.toml @@ -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 diff --git a/crates/memory/Cargo.toml b/crates/memory/Cargo.toml index 9f621683..f4ed55d3 100644 --- a/crates/memory/Cargo.toml +++ b/crates/memory/Cargo.toml @@ -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 diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index fbe9d030..fec317fa 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -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 @@ -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 } diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 5809c110..4533ecaf 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -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 @@ -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 } diff --git a/crates/serialize/Cargo.toml b/crates/serialize/Cargo.toml index 5d7bed2d..559a0425 100644 --- a/crates/serialize/Cargo.toml +++ b/crates/serialize/Cargo.toml @@ -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 @@ -24,5 +24,5 @@ serde = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 7e40718f..ff4c3105 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -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 @@ -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 diff --git a/libs/color/Cargo.toml b/libs/color/Cargo.toml index 2bad5699..9126c537 100644 --- a/libs/color/Cargo.toml +++ b/libs/color/Cargo.toml @@ -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 @@ -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] diff --git a/libs/geometry/Cargo.toml b/libs/geometry/Cargo.toml index 4ca95a64..7336f532 100644 --- a/libs/geometry/Cargo.toml +++ b/libs/geometry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_geometry" -version = "0.15.1" +version = "0.15.2" description = "A Koto library with basic geometry types and operations" authors.workspace = true @@ -24,7 +24,7 @@ glam = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies] diff --git a/libs/json/Cargo.toml b/libs/json/Cargo.toml index ab308c41..c381dac3 100644 --- a/libs/json/Cargo.toml +++ b/libs/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_json" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with JSON data" authors.workspace = true @@ -24,12 +24,12 @@ serde_json = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dependencies.koto_serialize] path = "../../crates/serialize" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies] diff --git a/libs/random/Cargo.toml b/libs/random/Cargo.toml index 39a4e044..8c380f34 100644 --- a/libs/random/Cargo.toml +++ b/libs/random/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_random" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with random numbers" authors.workspace = true @@ -26,7 +26,7 @@ rand_chacha = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/libs/regex/Cargo.toml b/libs/regex/Cargo.toml index e747fb82..aae6f18f 100644 --- a/libs/regex/Cargo.toml +++ b/libs/regex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_regex" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with regular expressions" authors = ["jasal82 ", "irh "] @@ -24,7 +24,7 @@ regex = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies] diff --git a/libs/tempfile/Cargo.toml b/libs/tempfile/Cargo.toml index c7ab1466..c7cd55e2 100644 --- a/libs/tempfile/Cargo.toml +++ b/libs/tempfile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_tempfile" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with temporary files" authors.workspace = true @@ -24,7 +24,7 @@ tempfile = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies] diff --git a/libs/toml/Cargo.toml b/libs/toml/Cargo.toml index c8f7fa7d..9c37777f 100644 --- a/libs/toml/Cargo.toml +++ b/libs/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_toml" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with TOML data" authors.workspace = true @@ -23,12 +23,12 @@ toml = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dependencies.koto_serialize] path = "../../crates/serialize" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies] diff --git a/libs/yaml/Cargo.toml b/libs/yaml/Cargo.toml index 662659dc..ca27cfdd 100644 --- a/libs/yaml/Cargo.toml +++ b/libs/yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koto_yaml" -version = "0.15.1" +version = "0.15.2" description = "A Koto library for working with YAML data" authors.workspace = true @@ -24,12 +24,12 @@ serde_yaml_ng = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dependencies.koto_serialize] path = "../../crates/serialize" -version = "^0.15.1" +version = "^0.15.2" default-features = false [dev-dependencies]