Skip to content

Commit 1f9debf

Browse files
Bump to v0.35.1 (#4088)
Co-authored-by: João Matos <joao@tritao.eu>
1 parent d3d6d33 commit 1f9debf

File tree

21 files changed

+114
-114
lines changed

21 files changed

+114
-114
lines changed

Cargo.lock

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

forc-pkg/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-pkg"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -11,8 +11,8 @@ description = "Building, locking, fetching and updating Sway projects as Forc pa
1111
[dependencies]
1212
anyhow = "1"
1313
fd-lock = "3.0"
14-
forc-tracing = { version = "0.35.0", path = "../forc-tracing" }
15-
forc-util = { version = "0.35.0", path = "../forc-util" }
14+
forc-tracing = { version = "0.35.1", path = "../forc-tracing" }
15+
forc-util = { version = "0.35.1", path = "../forc-util" }
1616
fuel-abi-types = "0.1"
1717
git2 = { version = "0.16.1", features = ["vendored-libgit2", "vendored-openssl"] }
1818
hex = "0.4.3"
@@ -21,10 +21,10 @@ semver = { version = "1.0", features = ["serde"] }
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde_ignored = "0.1"
2323
serde_json = "1.0"
24-
sway-core = { version = "0.35.0", path = "../sway-core" }
25-
sway-error = { version = "0.35.0", path = "../sway-error" }
26-
sway-types = { version = "0.35.0", path = "../sway-types" }
27-
sway-utils = { version = "0.35.0", path = "../sway-utils" }
24+
sway-core = { version = "0.35.1", path = "../sway-core" }
25+
sway-error = { version = "0.35.1", path = "../sway-error" }
26+
sway-types = { version = "0.35.1", path = "../sway-types" }
27+
sway-utils = { version = "0.35.1", path = "../sway-utils" }
2828
toml = "0.5"
2929
tracing = "0.1"
3030
url = { version = "2.2", features = ["serde"] }

forc-plugins/forc-client/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-client"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -14,11 +14,11 @@ async-trait = "0.1.58"
1414
chrono = { version = "0.4", default-features = false, features = ["std"] }
1515
clap = { version = "3", features = ["derive", "env"] }
1616
devault = "0.1"
17-
forc = { version = "0.35.0", path = "../../forc" }
18-
forc-pkg = { version = "0.35.0", path = "../../forc-pkg" }
19-
forc-tracing = { version = "0.35.0", path = "../../forc-tracing" }
20-
forc-tx = { version = "0.35.0", path = "../forc-tx" }
21-
forc-util = { version = "0.35.0", path = "../../forc-util" }
17+
forc = { version = "0.35.1", path = "../../forc" }
18+
forc-pkg = { version = "0.35.1", path = "../../forc-pkg" }
19+
forc-tracing = { version = "0.35.1", path = "../../forc-tracing" }
20+
forc-tx = { version = "0.35.1", path = "../forc-tx" }
21+
forc-util = { version = "0.35.1", path = "../../forc-util" }
2222
fuel-core-client = { workspace = true, default-features = false }
2323
fuel-crypto = { workspace = true }
2424
fuel-tx = { workspace = true, features = ["builder"] }
@@ -30,9 +30,9 @@ futures = "0.3"
3030
hex = "0.4.3"
3131
serde = "1.0"
3232
serde_json = "1"
33-
sway-core = { version = "0.35.0", path = "../../sway-core" }
34-
sway-types = { version = "0.35.0", path = "../../sway-types" }
35-
sway-utils = { version = "0.35.0", path = "../../sway-utils" }
33+
sway-core = { version = "0.35.1", path = "../../sway-core" }
34+
sway-types = { version = "0.35.1", path = "../../sway-types" }
35+
sway-utils = { version = "0.35.1", path = "../../sway-utils" }
3636
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
3737
tracing = "0.1"
3838

forc-plugins/forc-doc/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-doc"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -12,13 +12,13 @@ description = "Build the documentation for the local package and all dependencie
1212
anyhow = "1.0.65"
1313
clap = { version = "4.0.18", features = ["derive"] }
1414
comrak = "0.16"
15-
forc-pkg = { version = "0.35.0", path = "../../forc-pkg" }
16-
forc-util = { version = "0.35.0", path = "../../forc-util" }
15+
forc-pkg = { version = "0.35.1", path = "../../forc-pkg" }
16+
forc-util = { version = "0.35.1", path = "../../forc-util" }
1717
horrorshow = "0.8.4"
1818
include_dir = "0.7.3"
1919
opener = "0.5.0"
20-
sway-ast = { version = "0.35.0", path = "../../sway-ast" }
21-
sway-core = { version = "0.35.0", path = "../../sway-core" }
22-
sway-lsp = { version = "0.35.0", path = "../../sway-lsp" }
23-
sway-types = { version = "0.35.0", path = "../../sway-types" }
24-
swayfmt = { version = "0.35.0", path = "../../swayfmt" }
20+
sway-ast = { version = "0.35.1", path = "../../sway-ast" }
21+
sway-core = { version = "0.35.1", path = "../../sway-core" }
22+
sway-lsp = { version = "0.35.1", path = "../../sway-lsp" }
23+
sway-types = { version = "0.35.1", path = "../../sway-types" }
24+
swayfmt = { version = "0.35.1", path = "../../swayfmt" }

forc-plugins/forc-fmt/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-fmt"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -11,12 +11,12 @@ description = "A `forc` plugin for running the Sway code formatter."
1111
[dependencies]
1212
anyhow = "1"
1313
clap = { version = "3", features = ["derive"] }
14-
forc-pkg = { version = "0.35.0", path = "../../forc-pkg" }
15-
forc-tracing = { version = "0.35.0", path = "../../forc-tracing" }
16-
forc-util = { version = "0.35.0", path = "../../forc-util" }
14+
forc-pkg = { version = "0.35.1", path = "../../forc-pkg" }
15+
forc-tracing = { version = "0.35.1", path = "../../forc-tracing" }
16+
forc-util = { version = "0.35.1", path = "../../forc-util" }
1717
prettydiff = "0.5"
18-
sway-core = { version = "0.35.0", path = "../../sway-core" }
19-
sway-utils = { version = "0.35.0", path = "../../sway-utils" }
20-
swayfmt = { version = "0.35.0", path = "../../swayfmt" }
18+
sway-core = { version = "0.35.1", path = "../../sway-core" }
19+
sway-utils = { version = "0.35.1", path = "../../sway-utils" }
20+
swayfmt = { version = "0.35.1", path = "../../swayfmt" }
2121
taplo = "0.7"
2222
tracing = "0.1"

forc-plugins/forc-lsp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-lsp"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -11,5 +11,5 @@ description = "A simple `forc` plugin for starting the sway language server."
1111
[dependencies]
1212
anyhow = "1"
1313
clap = { version = "3", features = ["derive"] }
14-
sway-lsp = { version = "0.35.0", path = "../../sway-lsp" }
14+
sway-lsp = { version = "0.35.1", path = "../../sway-lsp" }
1515
tokio = { version = "1.8" }

forc-plugins/forc-tx/Cargo.toml

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

forc-test/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-test"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -10,9 +10,9 @@ description = "A library for building and running Sway unit tests within Forc pa
1010

1111
[dependencies]
1212
anyhow = "1"
13-
forc-pkg = { version = "0.35.0", path = "../forc-pkg" }
13+
forc-pkg = { version = "0.35.1", path = "../forc-pkg" }
1414
fuel-tx = { workspace = true, features = ["builder"] }
1515
fuel-vm = { workspace = true, features = ["random"] }
1616
rand = "0.8"
17-
sway-core = { version = "0.35.0", path = "../sway-core" }
18-
sway-types = { version = "0.35.0", path = "../sway-types" }
17+
sway-core = { version = "0.35.1", path = "../sway-core" }
18+
sway-types = { version = "0.35.1", path = "../sway-types" }

forc-tracing/Cargo.toml

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

forc-util/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-util"
3-
version = "0.35.0"
3+
version = "0.35.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -13,13 +13,13 @@ annotate-snippets = { version = "0.9", features = ["color"] }
1313
ansi_term = "0.12"
1414
anyhow = "1"
1515
dirs = "3.0.2"
16-
forc-tracing = { version = "0.35.0", path = "../forc-tracing" }
16+
forc-tracing = { version = "0.35.1", path = "../forc-tracing" }
1717
hex = "0.4.3"
1818
serde_json = "1.0.73"
19-
sway-core = { version = "0.35.0", path = "../sway-core" }
20-
sway-error = { version = "0.35.0", path = "../sway-error" }
21-
sway-types = { version = "0.35.0", path = "../sway-types" }
22-
sway-utils = { version = "0.35.0", path = "../sway-utils" }
19+
sway-core = { version = "0.35.1", path = "../sway-core" }
20+
sway-error = { version = "0.35.1", path = "../sway-error" }
21+
sway-types = { version = "0.35.1", path = "../sway-types" }
22+
sway-utils = { version = "0.35.1", path = "../sway-utils" }
2323
tracing = "0.1"
2424
tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "json"] }
2525
unicode-xid = "0.2.2"

0 commit comments

Comments
 (0)