Skip to content

Commit

Permalink
Bump version (#2014)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Jan 18, 2025
1 parent 1f80b1a commit d0a5561
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.3"
version = "0.1.4"
publish = false
edition.workspace = true

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

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

[build-dependencies]
stak-build = { version = "0.1.50", path = "../build" }
stak-build = { version = "0.1.51", 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.50"
version = "0.1.51"
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.1", path = "../compiler" }
stak-compiler = { version = "0.2.2", 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.1"
version = "0.4.2"
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.95"
version = "0.1.96"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
stak-sac = { version = "0.1.93", path = "../../sac", features = [
stak-sac = { version = "0.1.94", 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.20"
version = "0.3.21"
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.26", features = ["derive"] }
main_error = "0.1.2"
stak-configuration = { version = "0.1.87", path = "../../configuration" }
stak-device = { version = "0.2.91", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.5", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.49", path = "../../process_context", features = [
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 = [
"std",
] }
stak-r7rs = { version = "0.9.5", path = "../../r7rs" }
stak-time = { version = "0.1.32", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.20", path = "../../vm" }
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" }

[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.69"
version = "0.1.70"
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.93", path = "../../sac", features = ["std"] }
stak-sac = { version = "0.1.94", path = "../../sac", features = ["std"] }

[lints]
workspace = true
Loading

0 comments on commit d0a5561

Please sign in to comment.