Skip to content

Commit 1123118

Browse files
authored
Bump to v0.50.0 (#5564)
1 parent f702c41 commit 1123118

File tree

27 files changed

+138
-138
lines changed

27 files changed

+138
-138
lines changed

Cargo.lock

+31-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/src/documentation/introduction/installation/cargo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cargo
22

33
<!-- markdown-link-check-disable -->
4-
Cargo can be used to install the Sway toolchain with various [`plugins`](https://fuellabs.github.io/sway/v0.49.1/book/forc/plugins/index.html).
4+
Cargo can be used to install the Sway toolchain with various [`plugins`](https://fuellabs.github.io/sway/v0.50.0/book/forc/plugins/index.html).
55
<!-- markdown-link-check-enable -->
66

77
## Dependencies

docs/reference/src/documentation/introduction/installation/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ The supported operating systems include Linux and macOS; however, Windows is [`u
1919
`Cargo` may be used instead of [`Fuelup`](fuelup.md); however, the user needs to manage the toolchain themselves.
2020

2121
<!-- markdown-link-check-disable -->
22-
The advantage of using `Cargo` is the installation of [`plugins`](https://fuellabs.github.io/sway/v0.49.1/book/forc/plugins/index.html) that have not been added into [`Fuelup`](fuelup.md).
22+
The advantage of using `Cargo` is the installation of [`plugins`](https://fuellabs.github.io/sway/v0.50.0/book/forc/plugins/index.html) that have not been added into [`Fuelup`](fuelup.md).
2323

24-
The disadvantage occurs when [`Fuelup`](fuelup.md) and `Cargo` are used in tandem because the latest [`plugins`](https://fuellabs.github.io/sway/v0.49.1/book/forc/plugins/index.html) may not be recognized.
24+
The disadvantage occurs when [`Fuelup`](fuelup.md) and `Cargo` are used in tandem because the latest [`plugins`](https://fuellabs.github.io/sway/v0.50.0/book/forc/plugins/index.html) may not be recognized.
2525
<!-- markdown-link-check-enable -->
2626

2727
## Source

docs/reference/src/documentation/introduction/installation/source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The `Sway toolchain` can be built directly from the [`Sway repository`](https://
55
## Installation & Updating
66

77
<!-- markdown-link-check-disable -->
8-
In the root of the repository `/sway/<here>` build [`forc`](https://fuellabs.github.io/sway/v0.49.1/book/forc/commands/index.html) with the following command:
8+
In the root of the repository `/sway/<here>` build [`forc`](https://fuellabs.github.io/sway/v0.50.0/book/forc/commands/index.html) with the following command:
99
<!-- markdown-link-check-enable -->
1010

1111
```bash

docs/reference/src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The Sway Reference
22

33
<!-- markdown-link-check-disable -->
4-
This is the technical reference for the Sway programming language. For a prose explanation and introduction to the language, please refer to the [Sway Book](https://fuellabs.github.io/sway/v0.49.1/book/).
4+
This is the technical reference for the Sway programming language. For a prose explanation and introduction to the language, please refer to the [Sway Book](https://fuellabs.github.io/sway/v0.50.0/book/).
55
<!-- markdown-link-check-enable -->

forc-pkg/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-pkg"
3-
version = "0.49.1"
3+
version = "0.50.0"
44
description = "Building, locking, fetching and updating Sway projects as Forc packages."
55
authors.workspace = true
66
edition.workspace = true
@@ -12,8 +12,8 @@ repository.workspace = true
1212
ansi_term = "0.12"
1313
anyhow = "1"
1414
cid = "0.10"
15-
forc-tracing = { version = "0.49.1", path = "../forc-tracing" }
16-
forc-util = { version = "0.49.1", path = "../forc-util" }
15+
forc-tracing = { version = "0.50.0", path = "../forc-tracing" }
16+
forc-util = { version = "0.50.0", path = "../forc-util" }
1717
fuel-abi-types = { workspace = true }
1818
futures = "0.3"
1919
git2 = { version = "0.17.2", features = [
@@ -30,10 +30,10 @@ serde = { version = "1.0", features = ["derive"] }
3030
serde_ignored = "0.1.9"
3131
serde_json = "1.0"
3232
serde_with = "3.3.0"
33-
sway-core = { version = "0.49.1", path = "../sway-core" }
34-
sway-error = { version = "0.49.1", path = "../sway-error" }
35-
sway-types = { version = "0.49.1", path = "../sway-types" }
36-
sway-utils = { version = "0.49.1", path = "../sway-utils" }
33+
sway-core = { version = "0.50.0", path = "../sway-core" }
34+
sway-error = { version = "0.50.0", path = "../sway-error" }
35+
sway-types = { version = "0.50.0", path = "../sway-types" }
36+
sway-utils = { version = "0.50.0", path = "../sway-utils" }
3737
tar = "0.4.38"
3838
toml = { version = "0.7", features = ["parse"] }
3939
tracing = "0.1"

forc-plugins/forc-client/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-client"
3-
version = "0.49.1"
3+
version = "0.50.0"
44
description = "A `forc` plugin for interacting with a Fuel node."
55
authors.workspace = true
66
edition.workspace = true
@@ -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.49.1", path = "../../forc" }
18-
forc-pkg = { version = "0.49.1", path = "../../forc-pkg" }
19-
forc-tracing = { version = "0.49.1", path = "../../forc-tracing" }
20-
forc-tx = { version = "0.49.1", path = "../forc-tx" }
21-
forc-util = { version = "0.49.1", path = "../../forc-util" }
17+
forc = { version = "0.50.0", path = "../../forc" }
18+
forc-pkg = { version = "0.50.0", path = "../../forc-pkg" }
19+
forc-tracing = { version = "0.50.0", path = "../../forc-tracing" }
20+
forc-tx = { version = "0.50.0", path = "../forc-tx" }
21+
forc-util = { version = "0.50.0", path = "../../forc-util" }
2222
forc-wallet = { workspace = true }
2323
fuel-abi-types = { workspace = true }
2424
fuel-core-client = { workspace = true, features = ["subscriptions"] }
@@ -33,9 +33,9 @@ rand = "0.8"
3333
rpassword = "7.2"
3434
serde = "1.0"
3535
serde_json = "1"
36-
sway-core = { version = "0.49.1", path = "../../sway-core" }
37-
sway-types = { version = "0.49.1", path = "../../sway-types" }
38-
sway-utils = { version = "0.49.1", path = "../../sway-utils" }
36+
sway-core = { version = "0.50.0", path = "../../sway-core" }
37+
sway-types = { version = "0.50.0", path = "../../sway-types" }
38+
sway-utils = { version = "0.50.0", path = "../../sway-utils" }
3939
tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "process"] }
4040
tracing = "0.1"
4141

forc-plugins/forc-crypto/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc-crypto"
3-
version = "0.49.1"
3+
version = "0.50.0"
44
description = "A `forc` plugin for handling various cryptographic operations and conversions."
55
authors.workspace = true
66
edition.workspace = true
@@ -13,8 +13,8 @@ anyhow = "1.0.75"
1313
async-trait = "0.1.58"
1414
atty = "0.2.14"
1515
clap = { version = "3", features = ["derive", "env"] }
16-
forc-tracing = { version = "0.49.1", path = "../../forc-tracing" }
17-
forc-util = { version = "0.49.1", path = "../../forc-util" }
16+
forc-tracing = { version = "0.50.0", path = "../../forc-tracing" }
17+
forc-util = { version = "0.50.0", path = "../../forc-util" }
1818
fuel-core-types = { workspace = true }
1919
fuel-crypto = { workspace = true, features = ["random"] }
2020
fuels-core = { workspace = true }

0 commit comments

Comments
 (0)