Skip to content

Commit

Permalink
unify version number
Browse files Browse the repository at this point in the history
  • Loading branch information
oxfeeefeee committed Sep 8, 2023
1 parent e49764c commit e7cc330
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ async = ["go-vm/async"]
btree_map = ["go-parser/btree_map"]

[dependencies]
go-parser = { version = "0.1.1", path = "../parser" }
go-vm = { version = "0.1.3", path = "../vm" }
go-types = { version = "0.1.2", path = "../types" }
go-parser = { version = "0.1.4", path = "../parser" }
go-vm = { version = "0.1.4", path = "../vm" }
go-types = { version = "0.1.4", path = "../types" }

[dev-dependencies]
time-test = "0.2.2"
10 changes: 5 additions & 5 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ wasm = ["dep:wasm-bindgen", "dep:instant", "dep:getrandom"]
futures-lite = "1.12.0"
lazy_static = "1.4.0"
zip = { version = "0.6.2", features = ["deflate"], default-features = false, optional = true }
borsh = { version ="~0.10", optional = true }
borsh = { version ="0.10.3", optional = true }

wasm-bindgen = { version = "0.2.84", optional = true }
instant = { version = "0.1", features = ["wasm-bindgen"], optional = true }
getrandom = { version = "0.2", features = ["js"], optional = true }

go-parser = { version = "0.1.1", path = "../parser" }
go-vm = { version = "0.1.3", path = "../vm" }
go-types = { version = "0.1.2", path = "../types" }
go-parser = { version = "0.1.4", path = "../parser" }
go-vm = { version = "0.1.4", path = "../vm" }
go-types = { version = "0.1.4", path = "../types" }
go-codegen = { version = "0.1.4", path = "../codegen" }
go-pmacro = { version = "0.1.0", path = "../pmacro" }
go-pmacro = { version = "0.1.4", path = "../pmacro" }

[dev-dependencies]
time-test = "0.2.2"
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "go-parser"
version = "0.1.1"
version = "0.1.4"
authors = ["oxfeeefeee <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -15,4 +15,4 @@ btree_map = []
serde_borsh = ["dep:borsh"]

[dependencies]
borsh = { version ="~0.10", optional = true }
borsh = { version ="0.10.3", optional = true }
2 changes: 1 addition & 1 deletion pmacro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "go-pmacro"
version = "0.1.0"
version = "0.1.4"
edition = "2021"
license = "BSD-2-Clause "
repository = "https://github.com/oxfeeefeee/goscript/"
Expand Down
4 changes: 2 additions & 2 deletions types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "go-types"
version = "0.1.2"
version = "0.1.4"
authors = ["oxfeeefeee <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -19,7 +19,7 @@ num-rational = "0.4"
num-traits = "0.2"
ordered-float = "3.0"

go-parser = { version = "0.1.1", path = "../parser" }
go-parser = { version = "0.1.4", path = "../parser" }

[dev-dependencies]
regex = "1"
Expand Down
8 changes: 4 additions & 4 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "go-vm"
version = "0.1.3"
version = "0.1.4"
authors = ["oxfeeefeee <[email protected]>"]
edition = "2021"
license = "BSD-2-Clause"
Expand All @@ -22,10 +22,10 @@ async-channel = { version = "1.6.1", optional = true }
async-executor = { version ="1.4.1", optional = true }
futures-lite = { version ="1.12.0", optional = true }
fastrand = { version ="1.9.0", optional = true }
borsh = { version ="~0.10", optional = true }
borsh = { version ="0.10.3", optional = true }

go-parser = { version = "0.1.1", path = "../parser" }
go-pmacro = { version = "0.1.0", path = "../pmacro" }
go-parser = { version = "0.1.4", path = "../parser" }
go-pmacro = { version = "0.1.4", path = "../pmacro" }

[dev-dependencies]
time-test = "0.2.2"

0 comments on commit e7cc330

Please sign in to comment.