Skip to content

Commit 02ef7d1

Browse files
authored
v0.14.1 (#1715)
1 parent 00bedae commit 02ef7d1

File tree

16 files changed

+61
-61
lines changed

16 files changed

+61
-61
lines changed

Cargo.lock

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

forc-gm/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-gm"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"

forc-pkg/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-pkg"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -10,15 +10,15 @@ description = "Building, locking, fetching and updating Sway projects as Forc pa
1010

1111
[dependencies]
1212
anyhow = "1"
13-
forc-util = { version = "0.14.0", path = "../forc-util" }
13+
forc-util = { version = "0.14.1", path = "../forc-util" }
1414
fuels-types = "0.12"
1515
git2 = "0.14"
1616
petgraph = { version = "0.6", features = ["serde-1"] }
1717
semver = { version = "1.0", features = ["serde"] }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_ignored = "0.1"
20-
sway-core = { version = "0.14.0", path = "../sway-core" }
21-
sway-utils = { version = "0.14.0", path = "../sway-utils" }
20+
sway-core = { version = "0.14.1", path = "../sway-core" }
21+
sway-utils = { version = "0.14.1", path = "../sway-utils" }
2222
toml = "0.5"
2323
tracing = "0.1"
2424
url = { version = "2.2", features = ["serde"] }

forc-plugins/forc-explore/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-explore"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -11,7 +11,7 @@ description = "A `forc` plugin for running the fuel block explorer."
1111
[dependencies]
1212
anyhow = "1"
1313
clap = { version = "3", features = ["derive"] }
14-
forc-util = { version = "0.14.0", path = "../../forc-util" }
14+
forc-util = { version = "0.14.1", path = "../../forc-util" }
1515
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
1616
serde = { version = "1.0", features = ["derive"] }
1717
tar = "0.4"

forc-plugins/forc-fmt/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-fmt"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -11,10 +11,10 @@ description = "A `forc` plugin for running the Sway code formatter."
1111
[dependencies]
1212
anyhow = "1"
1313
clap = { version = "3", features = ["derive"] }
14-
forc-util = { version = "0.14.0", path = "../../forc-util" }
14+
forc-util = { version = "0.14.1", path = "../../forc-util" }
1515
prettydiff = "0.5"
16-
sway-core = { version = "0.14.0", path = "../../sway-core" }
17-
sway-fmt = { version = "0.14.0", path = "../../sway-fmt" }
18-
sway-utils = { version = "0.14.0", path = "../../sway-utils" }
16+
sway-core = { version = "0.14.1", path = "../../sway-core" }
17+
sway-fmt = { version = "0.14.1", path = "../../sway-fmt" }
18+
sway-utils = { version = "0.14.1", path = "../../sway-utils" }
1919
taplo = "0.7"
2020
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.14.0"
3+
version = "0.14.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.14.0", path = "../../sway-lsp" }
14+
sway-lsp = { version = "0.14.1", path = "../../sway-lsp" }
1515
tokio = { version = "1.8" }

forc-util/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-util"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -12,8 +12,8 @@ description = "Utility items shared between forc crates."
1212
annotate-snippets = { version = "0.9", features = ["color"] }
1313
anyhow = "1"
1414
dirs = "3.0.2"
15-
sway-core = { version = "0.14.0", path = "../sway-core" }
16-
sway-utils = { version = "0.14.0", path = "../sway-utils" }
15+
sway-core = { version = "0.14.1", path = "../sway-core" }
16+
sway-utils = { version = "0.14.1", path = "../sway-utils" }
1717
termcolor = "1.1"
1818
tracing = "0.1"
1919
tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "json"] }

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.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -21,8 +21,8 @@ annotate-snippets = { version = "0.9", features = ["color"] }
2121
anyhow = "1.0.41"
2222
clap = { version = "3.1", features = ["cargo", "derive", "env"] }
2323
clap_complete = "3.1"
24-
forc-pkg = { version = "0.14.0", path = "../forc-pkg" }
25-
forc-util = { version = "0.14.0", path = "../forc-util" }
24+
forc-pkg = { version = "0.14.1", path = "../forc-pkg" }
25+
forc-util = { version = "0.14.1", path = "../forc-util" }
2626
fs_extra = "1.2"
2727
fuel-asm = "0.5"
2828
fuel-gql-client = { version = "0.8", default-features = false }
@@ -32,9 +32,9 @@ futures = "0.3"
3232
hex = "0.4.3"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0.73"
35-
sway-core = { version = "0.14.0", path = "../sway-core" }
36-
sway-types = { version = "0.14.0", path = "../sway-types" }
37-
sway-utils = { version = "0.14.0", path = "../sway-utils" }
35+
sway-core = { version = "0.14.1", path = "../sway-core" }
36+
sway-types = { version = "0.14.1", path = "../sway-types" }
37+
sway-utils = { version = "0.14.1", path = "../sway-utils" }
3838
term-table = "1.3"
3939
tokio = { version = "1.8.0", features = ["macros", "rt-multi-thread", "process"] }
4040
toml = "0.5"

sway-core/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-core"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Fuel Labs <contact@fuel.sh>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"
@@ -28,9 +28,9 @@ regex = "1"
2828
serde = { version = "1.0", features = ["derive"] }
2929
sha2 = "0.9"
3030
smallvec = "1.7"
31-
sway-ir = { version = "0.14.0", path = "../sway-ir" }
32-
sway-parse = { version = "0.14.0", path = "../sway-parse" }
33-
sway-types = { version = "0.14.0", path = "../sway-types" }
34-
sway-utils = { version = "0.14.0", path = "../sway-utils" }
31+
sway-ir = { version = "0.14.1", path = "../sway-ir" }
32+
sway-parse = { version = "0.14.1", path = "../sway-parse" }
33+
sway-types = { version = "0.14.1", path = "../sway-types" }
34+
sway-utils = { version = "0.14.1", path = "../sway-utils" }
3535
thiserror = "1.0"
3636
tracing = "0.1"

sway-fmt-v2/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ description = "Sway sway-fmt-v2."
1111

1212
[dependencies]
1313
anyhow = "1"
14-
forc-util = { version = "0.14.0", path = "../forc-util" }
14+
forc-util = { version = "0.14.1", path = "../forc-util" }
1515
serde = { version = "1.0", features = ["derive"] }
1616
serde_ignored = "0.1"
17-
sway-core = { version = "0.14.0", path = "../sway-core" }
18-
sway-parse = { version = "0.14.0", path = "../sway-parse" }
19-
sway-types = { version = "0.14.0", path = "../sway-types" }
17+
sway-core = { version = "0.14.1", path = "../sway-core" }
18+
sway-parse = { version = "0.14.1", path = "../sway-parse" }
19+
sway-types = { version = "0.14.1", path = "../sway-types" }
2020
thiserror = "1.0.30"
2121
toml = "0.5"

0 commit comments

Comments
 (0)