Skip to content

Commit

Permalink
Bump to v0.3.0 (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerjohn authored Jan 19, 2022
1 parent ec6e0f1 commit b81eee7
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 35 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion docstrings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "docstrings"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
publish = false

Expand Down
12 changes: 6 additions & 6 deletions forc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand All @@ -25,11 +25,11 @@ semver = "1.0.3"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0.73"
structopt = "0.3"
sway-core = { version = "0.2.1", path = "../sway-core" }
sway-fmt = { version = "0.2.1", path = "../sway-fmt" }
sway-server = { version = "0.2.1", path = "../sway-server" }
sway-utils = { version = "0.2.1", path = "../sway-utils" }
sway-types = { version = "0.2.1", path = "../sway-types" }
sway-core = { version = "0.3.0", path = "../sway-core" }
sway-fmt = { version = "0.3.0", path = "../sway-fmt" }
sway-server = { version = "0.3.0", path = "../sway-server" }
sway-utils = { version = "0.3.0", path = "../sway-utils" }
sway-types = { version = "0.3.0", path = "../sway-types" }
taplo = "0.7"
tar = "0.4.35"
term-table = "1.3"
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parser"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
publish = false

Expand Down
6 changes: 3 additions & 3 deletions sway-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-core"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand All @@ -25,8 +25,8 @@ prettydiff = "0.5"
sha2 = "0.9"
smallvec = "1.7"
structopt = { version = "0.3", default-features = false, optional = true }
sway-ir = { version = "0.2.1", path = "../sway-ir" }
sway-types = { version = "0.2.1", path = "../sway-types" }
sway-ir = { version = "0.3.0", path = "../sway-ir" }
sway-types = { version = "0.3.0", path = "../sway-types" }
thiserror = "1.0"

[[bin]]
Expand Down
6 changes: 3 additions & 3 deletions sway-fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-fmt"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand All @@ -10,6 +10,6 @@ description = "Sway sway-fmt."

[dependencies]
ropey = "1.2"
sway-core = { version = "0.2.1", path = "../sway-core" }
sway-types = { version = "0.2.1", path = "../sway-types" }
sway-core = { version = "0.3.0", path = "../sway-core" }
sway-types = { version = "0.3.0", path = "../sway-types" }

4 changes: 2 additions & 2 deletions sway-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-ir"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -16,4 +16,4 @@ generational-arena = "0.2"
peg = "0.7"
pest = { version = "3.0.4", package = "fuel-pest" }
prettydiff = "0.5"
sway-types = { version = "0.2.1", path = "../sway-types" }
sway-types = { version = "0.3.0", path = "../sway-types" }
10 changes: 5 additions & 5 deletions sway-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-server"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand All @@ -13,8 +13,8 @@ dashmap = "4.0.2"
lspower = "1.0.0"
ropey = "1.2"
serde_json = "1.0.60"
sway-core = { version = "0.2.1", path = "../sway-core" }
sway-fmt = { version = "0.2.1", path = "../sway-fmt" }
sway-types = { version = "0.2.1", path = "../sway-types" }
sway-utils = { version = "0.2.1", path = "../sway-utils" }
sway-core = { version = "0.3.0", path = "../sway-core" }
sway-fmt = { version = "0.3.0", path = "../sway-fmt" }
sway-types = { version = "0.3.0", path = "../sway-types" }
sway-utils = { version = "0.3.0", path = "../sway-utils" }
tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
2 changes: 1 addition & 1 deletion sway-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-types"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand Down
2 changes: 1 addition & 1 deletion sway-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sway-utils"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand Down
4 changes: 2 additions & 2 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "test"
version = "0.2.1"
version = "0.3.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2018"
publish = false

[dependencies]
forc = { version = "0.2.1", path = "../forc", features = ["test"], default-features = false }
forc = { version = "0.3.0", path = "../forc", features = ["test"], default-features = false }
fuel-asm = "0.1"
fuel-tx = "0.2"
fuel-vm = { version = "0.2", features = ["random"] }
Expand Down

0 comments on commit b81eee7

Please sign in to comment.