Skip to content

Commit

Permalink
Bump version (#1947)
Browse files Browse the repository at this point in the history
- **Fix**
- **Bump version**
  • Loading branch information
raviqqe authored Jan 7, 2025
1 parent b52a4c2 commit 45969ae
Show file tree
Hide file tree
Showing 33 changed files with 172 additions and 164 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

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

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.46"
version = "0.1.47"
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.1.91", path = "../compiler" }
stak-compiler = { version = "0.1.92", path = "../compiler" }
tokio = { version = "1.42.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.3.16"
version = "0.3.17"
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.91"
version = "0.1.92"
edition.workspace = true
keywords.workspace = true
license-file.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
stak-sac = { version = "0.1.89", path = "../../sac", features = [
stak-sac = { version = "0.1.90", 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.16"
version = "0.3.17"
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.23", features = ["derive"] }
main_error = "0.1.2"
stak-configuration = { version = "0.1.83", path = "../../configuration" }
stak-device = { version = "0.2.87", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.1", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.45", path = "../../process_context", features = [
stak-configuration = { version = "0.1.84", path = "../../configuration" }
stak-device = { version = "0.2.88", path = "../../device", features = ["std"] }
stak-file = { version = "0.5.2", path = "../../file", features = ["std"] }
stak-process-context = { version = "0.2.46", path = "../../process_context", features = [
"std",
] }
stak-r7rs = { version = "0.9.1", path = "../../r7rs" }
stak-time = { version = "0.1.28", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.16", path = "../../vm" }
stak-r7rs = { version = "0.9.2", path = "../../r7rs" }
stak-time = { version = "0.1.29", path = "../../time", features = ["std"] }
stak-vm = { version = "0.7.17", 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.65"
version = "0.1.66"
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.89", path = "../../sac", features = ["std"] }
stak-sac = { version = "0.1.90", path = "../../sac", features = ["std"] }

[lints]
workspace = true
Loading

0 comments on commit 45969ae

Please sign in to comment.