Skip to content

Commit 441ab12

Browse files
authored
bump to v0.3.3 (#715)
1 parent 3012191 commit 441ab12

File tree

10 files changed

+31
-31
lines changed

10 files changed

+31
-31
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

forc/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -25,11 +25,11 @@ semver = "1.0.3"
2525
serde = {version = "1.0", features = ["derive"]}
2626
serde_json = "1.0.73"
2727
structopt = "0.3"
28-
sway-core = { version = "0.3.1", path = "../sway-core" }
29-
sway-fmt = { version = "0.3.1", path = "../sway-fmt" }
30-
sway-server = { version = "0.3.1", path = "../sway-server" }
31-
sway-utils = { version = "0.3.1", path = "../sway-utils" }
32-
sway-types = { version = "0.3.1", path = "../sway-types" }
28+
sway-core = { version = "0.3.3", path = "../sway-core" }
29+
sway-fmt = { version = "0.3.3", path = "../sway-fmt" }
30+
sway-server = { version = "0.3.3", path = "../sway-server" }
31+
sway-utils = { version = "0.3.3", path = "../sway-utils" }
32+
sway-types = { version = "0.3.3", path = "../sway-types" }
3333
taplo = "0.7"
3434
tar = "0.4.35"
3535
term-table = "1.3"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parser"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
edition = "2021"
55
publish = false
66

sway-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-core"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -25,8 +25,8 @@ prettydiff = "0.5"
2525
sha2 = "0.9"
2626
smallvec = "1.7"
2727
structopt = { version = "0.3", default-features = false, optional = true }
28-
sway-ir = { version = "0.3.1", path = "../sway-ir" }
29-
sway-types = { version = "0.3.1", path = "../sway-types" }
28+
sway-ir = { version = "0.3.3", path = "../sway-ir" }
29+
sway-types = { version = "0.3.3", path = "../sway-types" }
3030
generational-arena = "0.2"
3131
thiserror = "1.0"
3232

sway-fmt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-fmt"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -10,6 +10,6 @@ description = "Sway sway-fmt."
1010

1111
[dependencies]
1212
ropey = "1.2"
13-
sway-core = { version = "0.3.1", path = "../sway-core" }
14-
sway-types = { version = "0.3.1", path = "../sway-types" }
13+
sway-core = { version = "0.3.3", path = "../sway-core" }
14+
sway-types = { version = "0.3.3", path = "../sway-types" }
1515

sway-ir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-ir"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -16,4 +16,4 @@ generational-arena = "0.2"
1616
peg = "0.7"
1717
pest = { version = "3.0.4", package = "fuel-pest" }
1818
prettydiff = "0.5"
19-
sway-types = { version = "0.3.1", path = "../sway-types" }
19+
sway-types = { version = "0.3.3", path = "../sway-types" }

sway-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-server"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -13,8 +13,8 @@ dashmap = "4.0.2"
1313
lspower = "1.0.0"
1414
ropey = "1.2"
1515
serde_json = "1.0.60"
16-
sway-core = { version = "0.3.1", path = "../sway-core" }
17-
sway-fmt = { version = "0.3.1", path = "../sway-fmt" }
18-
sway-types = { version = "0.3.1", path = "../sway-types" }
19-
sway-utils = { version = "0.3.1", path = "../sway-utils" }
16+
sway-core = { version = "0.3.3", path = "../sway-core" }
17+
sway-fmt = { version = "0.3.3", path = "../sway-fmt" }
18+
sway-types = { version = "0.3.3", path = "../sway-types" }
19+
sway-utils = { version = "0.3.3", path = "../sway-utils" }
2020
tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }

sway-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-types"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"

sway-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-utils"
3-
version = "0.3.1"
3+
version = "0.3.3"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"

test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
publish = false
77

88
[dependencies]
9-
forc = { version = "0.3.1", path = "../forc", features = ["test"], default-features = false }
9+
forc = { version = "0.3.3", path = "../forc", features = ["test"], default-features = false }
1010
fuel-asm = "0.1"
1111
fuel-tx = "0.2"
1212
fuel-vm = { version = "0.2", features = ["random"] }

0 commit comments

Comments
 (0)