Skip to content

Commit

Permalink
Bump version (#2058)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Jan 30, 2025
1 parent e87a99a commit 7d08f0f
Show file tree
Hide file tree
Showing 36 changed files with 183 additions and 184 deletions.
64 changes: 32 additions & 32 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "stak-bench"
version = "0.1.5"
version = "0.1.6"
publish = false
edition.workspace = true

[dependencies]
stak = { version = "0.5.3", path = "../root" }
stak-compiler = { version = "0.2.3", path = "../compiler" }
stak = { version = "0.6.0", path = "../root" }
stak-compiler = { version = "0.2.4", path = "../compiler" }

[dev-dependencies]
criterion = { package = "codspeed-criterion-compat", version = "2.7.2" }

[build-dependencies]
stak-build = { version = "0.1.52", path = "../build" }
stak-build = { version = "0.1.53", path = "../build" }

[lints]
workspace = true
Expand Down
4 changes: 2 additions & 2 deletions build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stak-build"
description = "Build scripts for Stak Scheme"
version = "0.1.52"
version = "0.1.53"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
Expand All @@ -10,7 +10,7 @@ repository.workspace = true

[dependencies]
glob = "0.3.2"
stak-compiler = { version = "0.2.3", path = "../compiler" }
stak-compiler = { version = "0.2.4", path = "../compiler" }
tokio = { version = "1.43.0", features = [
"fs",
"io-util",
Expand Down
2 changes: 1 addition & 1 deletion cmd/compile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stak-compile"
description = "Stak Scheme bytecode compiler"
version = "0.4.3"
version = "0.4.4"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions cmd/decode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "stak-decode"
description = "Stak Scheme bytecode decoder"
version = "0.1.97"
version = "0.1.98"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
stak-sac = { version = "0.1.95", path = "../../sac", features = [
stak-sac = { version = "0.1.96", path = "../../sac", features = [
"float",
"std",
] }
Expand Down
16 changes: 8 additions & 8 deletions cmd/interpret/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stak-interpret"
description = "Stak Scheme bytecode interpreter"
version = "0.3.22"
version = "0.3.23"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
Expand All @@ -18,15 +18,15 @@ trace_memory = ["stak-vm/trace_memory"]
[dependencies]
clap = { version = "4.5.27", features = ["derive"] }
main_error = "0.1.2"
stak-configuration = { version = "0.1.89", path = "../../configuration" }
stak-device = { version = "0.2.93", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.7", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.51", path = "../../process_context", features = [
stak-configuration = { version = "0.1.90", path = "../../configuration" }
stak-device = { version = "0.2.94", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.8", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.52", path = "../../process_context", features = [
"std",
] }
stak-r7rs = { version = "0.9.7", path = "../../r7rs" }
stak-time = { version = "0.1.34", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.22", path = "../../vm" }
stak-r7rs = { version = "0.9.8", path = "../../r7rs" }
stak-time = { version = "0.1.35", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.23", path = "../../vm" }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions cmd/minify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stak-minify"
description = "Stak Scheme source code minifier"
version = "0.1.71"
version = "0.1.72"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
Expand All @@ -13,7 +13,7 @@ default = ["float"]
float = ["stak-sac/float"]

[dependencies]
stak-sac = { version = "0.1.95", path = "../../sac", features = ["std"] }
stak-sac = { version = "0.1.96", path = "../../sac", features = ["std"] }

[lints]
workspace = true
Loading

0 comments on commit 7d08f0f

Please sign in to comment.