Bump to v0.17.0 (#2174)

* bump to 0.17.0

* Also run cargo update
This commit is contained in:
Mohammad Fawaz 2022-07-01 15:12:20 -04:00 committed by GitHub
parent fd3a96f13b
commit b81bcd9652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 143 additions and 153 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "forc-explore"
version = "0.16.2"
version = "0.17.0"
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.16.2", path = "../../forc-util" }
forc-util = { version = "0.17.0", 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.16.2"
version = "0.17.0"
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.16.2", path = "../../forc-util" }
forc-util = { version = "0.17.0", path = "../../forc-util" }
prettydiff = "0.5"
sway-core = { version = "0.16.2", path = "../../sway-core" }
sway-fmt-v2 = { version = "0.16.2", path = "../../sway-fmt-v2" }
sway-utils = { version = "0.16.2", path = "../../sway-utils" }
sway-core = { version = "0.17.0", path = "../../sway-core" }
sway-fmt-v2 = { version = "0.17.0", path = "../../sway-fmt-v2" }
sway-utils = { version = "0.17.0", path = "../../sway-utils" }
taplo = "0.7"
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-fmt"
version = "0.16.2"
version = "0.17.0"
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.16.2", path = "../../forc-util" }
forc-util = { version = "0.17.0", path = "../../forc-util" }
prettydiff = "0.5"
sway-core = { version = "0.16.2", path = "../../sway-core" }
sway-fmt = { version = "0.16.2", path = "../../sway-fmt" }
sway-utils = { version = "0.16.2", path = "../../sway-utils" }
sway-core = { version = "0.17.0", path = "../../sway-core" }
sway-fmt = { version = "0.17.0", path = "../../sway-fmt" }
sway-utils = { version = "0.17.0", path = "../../sway-utils" }
taplo = "0.7"
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "forc-lsp"
version = "0.16.2"
version = "0.17.0"
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.16.2", path = "../../sway-lsp" }
sway-lsp = { version = "0.17.0", path = "../../sway-lsp" }
tokio = { version = "1.8" }