Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Mar 11, 2024
1 parent 2dc45f0 commit 6a47199
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pack"
version = "0.0.3"
version = "0.0.5"
edition = "2021"
description = "Pack into zip"
license = "MIT"
2 changes: 1 addition & 1 deletion interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lead_lang_interpreter"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
description = "Interpreter of the Lead Programming Language"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions lead/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lead_cli"
version = "0.0.1"
version = "0.0.5"
edition = "2021"

[[bin]]
Expand All @@ -9,7 +9,7 @@ path = "./src/main.rs"

[dependencies]
lead_lang_interpreter = { path = "../interpreter" }
inquire = "0.6.2"
inquire = "0.7.1"
clap = { version = "4.4.18", features = ["derive"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lead_lang_core"
version = "0.0.3"
version = "0.0.5"
edition = "2021"
description = "Core Package of the Lead Programming Language"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions packages/std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lead_lang_std"
version = "0.0.3"
version = "0.0.5"
edition = "2021"
description = "Standard Package of the Lead Programming Language"
license = "MIT"
Expand All @@ -12,5 +12,5 @@ crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
inquire = "0.6.2"
inquire = "0.7.1"
lead_lang_interpreter = { path = "../../interpreter" }
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn main() {

#[cfg(not(windows))]
Command::new("zip")
.args(["./build.zip", "./build/*"])
.args(["-r", "./build.zip", "./build/"])
.spawn()
.unwrap()
.wait()
Expand Down

0 comments on commit 6a47199

Please sign in to comment.