Skip to content

Commit

Permalink
Bump to v0.37.0 (FuelLabs#4401)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadfawaz authored Apr 6, 2023
1 parent 91ed981 commit 607ac50
Show file tree
Hide file tree
Showing 21 changed files with 141 additions and 131 deletions.
82 changes: 46 additions & 36 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions forc-pkg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-pkg"
version = "0.36.1"
version = "0.37.0"
description = "Building, locking, fetching and updating Sway projects as Forc packages."
authors.workspace = true
edition.workspace = true
Expand All @@ -12,8 +12,8 @@ repository.workspace = true
ansi_term = "0.12"
anyhow = "1"
fd-lock = "3.0"
forc-tracing = { version = "0.36.1", path = "../forc-tracing" }
forc-util = { version = "0.36.1", path = "../forc-util" }
forc-tracing = { version = "0.37.0", path = "../forc-tracing" }
forc-util = { version = "0.37.0", path = "../forc-util" }
fuel-abi-types = "0.1"
git2 = { version = "0.16.1", features = ["vendored-libgit2", "vendored-openssl"] }
gix-url = { version = "0.16.0", features = ["serde1"] }
Expand All @@ -23,10 +23,10 @@ semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_ignored = "0.1"
serde_json = "1.0"
sway-core = { version = "0.36.1", path = "../sway-core" }
sway-error = { version = "0.36.1", path = "../sway-error" }
sway-types = { version = "0.36.1", path = "../sway-types" }
sway-utils = { version = "0.36.1", path = "../sway-utils" }
sway-core = { version = "0.37.0", path = "../sway-core" }
sway-error = { version = "0.37.0", path = "../sway-error" }
sway-types = { version = "0.37.0", path = "../sway-types" }
sway-utils = { version = "0.37.0", path = "../sway-utils" }
toml = "0.5"
tracing = "0.1"
url = { version = "2.2", features = ["serde"] }
Expand Down
18 changes: 9 additions & 9 deletions forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-client"
version = "0.36.1"
version = "0.37.0"
description = "A `forc` plugin for interacting with a Fuel node."
authors.workspace = true
edition.workspace = true
Expand All @@ -14,11 +14,11 @@ async-trait = "0.1.58"
chrono = { version = "0.4", default-features = false, features = ["std"] }
clap = { version = "3", features = ["derive", "env"] }
devault = "0.1"
forc = { version = "0.36.1", path = "../../forc" }
forc-pkg = { version = "0.36.1", path = "../../forc-pkg" }
forc-tracing = { version = "0.36.1", path = "../../forc-tracing" }
forc-tx = { version = "0.36.1", path = "../forc-tx" }
forc-util = { version = "0.36.1", path = "../../forc-util" }
forc = { version = "0.37.0", path = "../../forc" }
forc-pkg = { version = "0.37.0", path = "../../forc-pkg" }
forc-tracing = { version = "0.37.0", path = "../../forc-tracing" }
forc-tx = { version = "0.37.0", path = "../forc-tx" }
forc-util = { version = "0.37.0", path = "../../forc-util" }
fuel-core-client = { workspace = true, default-features = false }
fuel-crypto = { workspace = true }
fuel-tx = { workspace = true, features = ["builder"] }
Expand All @@ -31,9 +31,9 @@ hex = "0.4.3"
rand = "0.8"
serde = "1.0"
serde_json = "1"
sway-core = { version = "0.36.1", path = "../../sway-core" }
sway-types = { version = "0.36.1", path = "../../sway-types" }
sway-utils = { version = "0.36.1", path = "../../sway-utils" }
sway-core = { version = "0.37.0", path = "../../sway-core" }
sway-types = { version = "0.37.0", path = "../../sway-types" }
sway-utils = { version = "0.37.0", path = "../../sway-utils" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
tracing = "0.1"

Expand Down
16 changes: 8 additions & 8 deletions forc-plugins/forc-doc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forc-doc"
version = "0.36.1"
version = "0.37.0"
description = "Build the documentation for the local package and all dependencies. The output is placed in `out/doc` in the same format as the project."
authors.workspace = true
edition.workspace = true
Expand All @@ -12,13 +12,13 @@ repository.workspace = true
anyhow = "1.0.65"
clap = { version = "4.0.18", features = ["derive"] }
comrak = "0.16"
forc-pkg = { version = "0.36.1", path = "../../forc-pkg" }
forc-util = { version = "0.36.1", path = "../../forc-util" }
forc-pkg = { version = "0.37.0", path = "../../forc-pkg" }
forc-util = { version = "0.37.0", path = "../../forc-util" }
horrorshow = "0.8.4"
include_dir = "0.7.3"
opener = "0.5.0"
sway-ast = { version = "0.36.1", path = "../../sway-ast" }
sway-core = { version = "0.36.1", path = "../../sway-core" }
sway-lsp = { version = "0.36.1", path = "../../sway-lsp" }
sway-types = { version = "0.36.1", path = "../../sway-types" }
swayfmt = { version = "0.36.1", path = "../../swayfmt" }
sway-ast = { version = "0.37.0", path = "../../sway-ast" }
sway-core = { version = "0.37.0", path = "../../sway-core" }
sway-lsp = { version = "0.37.0", path = "../../sway-lsp" }
sway-types = { version = "0.37.0", path = "../../sway-types" }
swayfmt = { version = "0.37.0", path = "../../swayfmt" }
Loading

0 comments on commit 607ac50

Please sign in to comment.