Bump to v0.20.2 (#2584)

Bump to v0.20.2
This commit is contained in:
Mohammad Fawaz 2022-08-18 23:40:55 -04:00 committed by GitHub
parent 926753ab88
commit 6a8116fcee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 83 additions and 83 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "forc-client"
version = "0.20.1"
version = "0.20.2"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
@ -11,8 +11,8 @@ description = "A `forc` plugin for interacting with a Fuel node."
[dependencies]
anyhow = "1"
clap = { version = "3", features = ["derive", "env"] }
forc-pkg = { version = "0.20.1", path = "../../forc-pkg" }
forc-util = { version = "0.20.1", path = "../../forc-util" }
forc-pkg = { version = "0.20.2", path = "../../forc-pkg" }
forc-util = { version = "0.20.2", path = "../../forc-util" }
fuel-gql-client = { version = "0.9", default-features = false }
fuel-tx = "0.13"
fuel-vm = "0.12"
@ -20,9 +20,9 @@ futures = "0.3"
hex = "0.4.3"
serde = { version = "1.0" }
serde_json = "1.0.73"
sway-core = { version = "0.20.1", path = "../../sway-core" }
sway-types = { version = "0.20.1", path = "../../sway-types" }
sway-utils = { version = "0.20.1", path = "../../sway-utils" }
sway-core = { version = "0.20.2", path = "../../sway-core" }
sway-types = { version = "0.20.2", path = "../../sway-types" }
sway-utils = { version = "0.20.2", path = "../../sway-utils" }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-explore"
version = "0.20.1"
version = "0.20.2"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
@ -11,7 +11,7 @@ description = "A `forc` plugin for running the fuel block explorer."
[dependencies]
anyhow = "1"
clap = { version = "3", features = ["derive"] }
forc-util = { version = "0.20.1", path = "../../forc-util" }
forc-util = { version = "0.20.2", path = "../../forc-util" }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
tar = "0.4"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-fmt-v2"
version = "0.20.1"
version = "0.20.2"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
@ -12,10 +12,10 @@ description = "A `forc` plugin for running the Sway code formatter."
[dependencies]
anyhow = "1"
clap = { version = "3", features = ["derive"] }
forc-util = { version = "0.20.1", path = "../../forc-util" }
forc-util = { version = "0.20.2", path = "../../forc-util" }
prettydiff = "0.5"
sway-core = { version = "0.20.1", path = "../../sway-core" }
sway-fmt-v2 = { version = "0.20.1", path = "../../sway-fmt-v2" }
sway-utils = { version = "0.20.1", path = "../../sway-utils" }
sway-core = { version = "0.20.2", path = "../../sway-core" }
sway-fmt-v2 = { version = "0.20.2", path = "../../sway-fmt-v2" }
sway-utils = { version = "0.20.2", path = "../../sway-utils" }
taplo = "0.7"
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-fmt"
version = "0.20.1"
version = "0.20.2"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
@ -11,10 +11,10 @@ description = "A `forc` plugin for running the Sway code formatter."
[dependencies]
anyhow = "1"
clap = { version = "3", features = ["derive"] }
forc-util = { version = "0.20.1", path = "../../forc-util" }
forc-util = { version = "0.20.2", path = "../../forc-util" }
prettydiff = "0.5"
sway-core = { version = "0.20.1", path = "../../sway-core" }
sway-fmt = { version = "0.20.1", path = "../../sway-fmt" }
sway-utils = { version = "0.20.1", path = "../../sway-utils" }
sway-core = { version = "0.20.2", path = "../../sway-core" }
sway-fmt = { version = "0.20.2", path = "../../sway-fmt" }
sway-utils = { version = "0.20.2", path = "../../sway-utils" }
taplo = "0.7"
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-lsp"
version = "0.20.1"
version = "0.20.2"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
@ -11,5 +11,5 @@ description = "A simple `forc` plugin for starting the sway language server."
[dependencies]
anyhow = "1"
clap = { version = "3", features = ["derive"] }
sway-lsp = { version = "0.20.1", path = "../../sway-lsp" }
sway-lsp = { version = "0.20.2", path = "../../sway-lsp" }
tokio = { version = "1.8" }