Skip to content

Commit 35e5a2f

Browse files
authored
Bump to v0.6.0 (#897)
* Bump to v0.6.0 * Revert prettydiff bump
1 parent 7109b98 commit 35e5a2f

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.5.0"
3+
version = "0.6.0"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -28,11 +28,11 @@ reqwest = { version = "0.11.4", default-features = false, features = ["json", "r
2828
semver = "1.0.3"
2929
serde = {version = "1.0", features = ["derive"]}
3030
serde_json = "1.0.73"
31-
sway-core = { version = "0.5.0", path = "../sway-core" }
32-
sway-fmt = { version = "0.5.0", path = "../sway-fmt" }
33-
sway-server = { version = "0.5.0", path = "../sway-server" }
34-
sway-utils = { version = "0.5.0", path = "../sway-utils" }
35-
sway-types = { version = "0.5.0", path = "../sway-types" }
31+
sway-core = { version = "0.6.0", path = "../sway-core" }
32+
sway-fmt = { version = "0.6.0", path = "../sway-fmt" }
33+
sway-server = { version = "0.6.0", path = "../sway-server" }
34+
sway-utils = { version = "0.6.0", path = "../sway-utils" }
35+
sway-types = { version = "0.6.0", path = "../sway-types" }
3636
taplo = "0.7"
3737
tar = "0.4.35"
3838
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.5.0"
3+
version = "0.6.0"
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.5.0"
3+
version = "0.6.0"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -29,8 +29,8 @@ regex = "1"
2929
serde = { version = "1.0", features = ["derive"] }
3030
sha2 = "0.9"
3131
smallvec = "1.7"
32-
sway-ir = { version = "0.5.0", path = "../sway-ir" }
33-
sway-types = { version = "0.5.0", path = "../sway-types" }
32+
sway-ir = { version = "0.6.0", path = "../sway-ir" }
33+
sway-types = { version = "0.6.0", path = "../sway-types" }
3434
generational-arena = "0.2"
3535
thiserror = "1.0"
3636

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.5.0"
3+
version = "0.6.0"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
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.5.0", path = "../sway-core" }
14-
sway-types = { version = "0.5.0", path = "../sway-types" }
13+
sway-core = { version = "0.6.0", path = "../sway-core" }
14+
sway-types = { version = "0.6.0", 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.5.0"
3+
version = "0.6.0"
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.5.0", path = "../sway-types" }
19+
sway-types = { version = "0.6.0", 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.5.0"
3+
version = "0.6.0"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
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.5.0", path = "../sway-core" }
17-
sway-fmt = { version = "0.5.0", path = "../sway-fmt" }
18-
sway-types = { version = "0.5.0", path = "../sway-types" }
19-
sway-utils = { version = "0.5.0", path = "../sway-utils" }
16+
sway-core = { version = "0.6.0", path = "../sway-core" }
17+
sway-fmt = { version = "0.6.0", path = "../sway-fmt" }
18+
sway-types = { version = "0.6.0", path = "../sway-types" }
19+
sway-utils = { version = "0.6.0", 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.5.0"
3+
version = "0.6.0"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
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.5.0"
3+
version = "0.6.0"
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
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
anyhow = "1.0.41"
10-
forc = { version = "0.5.0", path = "../forc", features = ["test"], default-features = false }
10+
forc = { version = "0.6.0", path = "../forc", features = ["test"], default-features = false }
1111
fuel-asm = "0.2"
1212
fuel-tx = "0.6"
1313
fuel-vm = { version = "0.5", features = ["random"] }

0 commit comments

Comments
 (0)