Skip to content

Commit

Permalink
Bump version (#2032)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Jan 22, 2025
1 parent ee6d822 commit 0f94fd3
Show file tree
Hide file tree
Showing 34 changed files with 168 additions and 168 deletions.
60 changes: 30 additions & 30 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.4"
version = "0.1.5"
publish = false
edition.workspace = true

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

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

[build-dependencies]
stak-build = { version = "0.1.51", path = "../build" }
stak-build = { version = "0.1.52", 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.51"
version = "0.1.52"
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.2", path = "../compiler" }
stak-compiler = { version = "0.2.3", 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.2"
version = "0.4.3"
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.96"
version = "0.1.97"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
stak-sac = { version = "0.1.94", path = "../../sac", features = [
stak-sac = { version = "0.1.95", 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.21"
version = "0.3.22"
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.88", path = "../../configuration" }
stak-device = { version = "0.2.92", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.6", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.50", path = "../../process_context", features = [
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 = [
"std",
] }
stak-r7rs = { version = "0.9.6", path = "../../r7rs" }
stak-time = { version = "0.1.33", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.21", path = "../../vm" }
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" }

[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.70"
version = "0.1.71"
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.94", path = "../../sac", features = ["std"] }
stak-sac = { version = "0.1.95", path = "../../sac", features = ["std"] }

[lints]
workspace = true
Loading

0 comments on commit 0f94fd3

Please sign in to comment.