Skip to content

Commit 3dad47c

Browse files
committed
Bump the version number to 0.15.2
1 parent bb9f6a9 commit 3dad47c

File tree

21 files changed

+77
-77
lines changed

21 files changed

+77
-77
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bytecode/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_bytecode"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "The bytecode compiler used by the Koto programming language"
55

66
authors.workspace = true
@@ -20,8 +20,8 @@ arc = ["koto_memory/arc"]
2020
rc = ["koto_memory/rc"]
2121

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

2626
circular-buffer = { workspace = true }
2727
derive-name = { workspace = true }

crates/cli/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_cli"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "A CLI and script runner for the Koto programming language"
55

66
authors.workspace = true
@@ -24,15 +24,15 @@ name = "koto"
2424
path = "src/main.rs"
2525

2626
[dependencies]
27-
koto = { path = "../koto", version = "^0.15.1", default-features = false }
28-
koto_color = { path = "../../libs/color", version = "^0.15.1", default-features = false }
29-
koto_geometry = { path = "../../libs/geometry", version = "^0.15.1", default-features = false }
30-
koto_json = { path = "../../libs/json", version = "^0.15.1", default-features = false }
31-
koto_random = { path = "../../libs/random", version = "^0.15.1", default-features = false }
32-
koto_regex = { path = "../../libs/regex", version = "^0.15.1", default-features = false }
33-
koto_tempfile = { path = "../../libs/tempfile", version = "^0.15.1", default-features = false }
34-
koto_toml = { path = "../../libs/toml", version = "^0.15.1", default-features = false }
35-
koto_yaml = { path = "../../libs/yaml", version = "^0.15.1", default-features = false }
27+
koto = { path = "../koto", version = "^0.15.2", default-features = false }
28+
koto_color = { path = "../../libs/color", version = "^0.15.2", default-features = false }
29+
koto_geometry = { path = "../../libs/geometry", version = "^0.15.2", default-features = false }
30+
koto_json = { path = "../../libs/json", version = "^0.15.2", default-features = false }
31+
koto_random = { path = "../../libs/random", version = "^0.15.2", default-features = false }
32+
koto_regex = { path = "../../libs/regex", version = "^0.15.2", default-features = false }
33+
koto_tempfile = { path = "../../libs/tempfile", version = "^0.15.2", default-features = false }
34+
koto_toml = { path = "../../libs/toml", version = "^0.15.2", default-features = false }
35+
koto_yaml = { path = "../../libs/yaml", version = "^0.15.2", default-features = false }
3636

3737
anyhow = { workspace = true }
3838
home = { workspace = true }

crates/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_derive"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "Macros for working with the Koto programming language"
55

66
authors.workspace = true

crates/koto/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "A simple, expressive, embeddable programming language"
55

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

2222

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

2828
thiserror = { workspace = true }
2929

crates/koto/examples/poetry/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_poetry"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
autobins = false
55
publish = false
66

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

1515
[dependencies]
16-
koto = { path = "../../", version = "^0.15.1" }
17-
koto_random = { path = "../../../../libs/random", version = "^0.15.1" }
16+
koto = { path = "../../", version = "^0.15.2" }
17+
koto_random = { path = "../../../../libs/random", version = "^0.15.2" }
1818

1919
anyhow = { workspace = true }
2020
hotwatch = { workspace = true }

crates/koto/examples/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_wasm"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
publish = false
55

66
authors.workspace = true

crates/lexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_lexer"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "The lexer used by the Koto programming language"
55

66
authors.workspace = true

crates/memory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_memory"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "Memory management utilities used by the Koto programming language"
55

66
authors.workspace = true

crates/parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koto_parser"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
description = "The parser used by the Koto programming language"
55

66
authors.workspace = true
@@ -23,8 +23,8 @@ rc = ["koto_memory/rc"]
2323
panic_on_parser_error = []
2424

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

2929
derive-name = { workspace = true }
3030
smallvec = { workspace = true }

0 commit comments

Comments
 (0)