Skip to content

Commit 5ed7cec

Browse files
authored
chore: bump to 0.66.7 (#6894)
## Description ## Checklist - [ ] I have linked to any relevant issues. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [ ] If my change requires substantial documentation changes, I have [requested support from the DevRel team](https://github.com/FuelLabs/devrel-requests/issues/new/choose) - [ ] I have added tests that prove my fix is effective or that my feature works. - [ ] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [ ] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [ ] I have requested a review from the relevant team or maintainers.
1 parent c6daba5 commit 5ed7cec

File tree

2 files changed

+63
-63
lines changed

2 files changed

+63
-63
lines changed

Cargo.lock

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

Cargo.toml

+26-26
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ exclude = ["examples/*", "swayfmt/test_macros", "forc-test/test_data"]
3232

3333
[workspace.package]
3434
edition = "2021"
35-
version = "0.66.6"
35+
version = "0.66.7"
3636
authors = ["Fuel Labs <contact@fuel.sh>"]
3737
homepage = "https://fuel.network/"
3838
license = "Apache-2.0"
@@ -43,36 +43,36 @@ repository = "https://github.com/FuelLabs/sway"
4343
# Internal dependencies in order to propagate `workspace.version`
4444
#
4545

46-
forc = { path = "forc/", version = "0.66.6" }
47-
forc-pkg = { path = "forc-pkg/", version = "0.66.6" }
48-
forc-test = { path = "forc-test/", version = "0.66.6" }
49-
forc-tracing = { path = "forc-tracing/", version = "0.66.6" }
50-
forc-util = { path = "forc-util/", version = "0.66.6" }
46+
forc = { path = "forc/", version = "0.66.7" }
47+
forc-pkg = { path = "forc-pkg/", version = "0.66.7" }
48+
forc-test = { path = "forc-test/", version = "0.66.7" }
49+
forc-tracing = { path = "forc-tracing/", version = "0.66.7" }
50+
forc-util = { path = "forc-util/", version = "0.66.7" }
5151

5252
# Forc plugins
53-
forc-plugins = { path = "forc-plugins/", version = "0.66.6" }
54-
forc-client = { path = "forc-plugins/forc-client/", version = "0.66.6" }
55-
forc-crypto = { path = "forc-plugins/forc-crypto/", version = "0.66.6" }
56-
forc-debug = { path = "forc-plugins/forc-debug/", version = "0.66.6" }
57-
forc-doc = { path = "forc-plugins/forc-doc/", version = "0.66.6" }
58-
forc-fmt = { path = "forc-plugins/forc-fmt/", version = "0.66.6" }
59-
forc-lsp = { path = "forc-plugins/forc-lsp/", version = "0.66.6" }
60-
forc-tx = { path = "forc-plugins/forc-tx/", version = "0.66.6" }
61-
forc-migrate = { path = "forc-plugins/forc-migrate/", version = "0.66.6" }
53+
forc-plugins = { path = "forc-plugins/", version = "0.66.7" }
54+
forc-client = { path = "forc-plugins/forc-client/", version = "0.66.7" }
55+
forc-crypto = { path = "forc-plugins/forc-crypto/", version = "0.66.7" }
56+
forc-debug = { path = "forc-plugins/forc-debug/", version = "0.66.7" }
57+
forc-doc = { path = "forc-plugins/forc-doc/", version = "0.66.7" }
58+
forc-fmt = { path = "forc-plugins/forc-fmt/", version = "0.66.7" }
59+
forc-lsp = { path = "forc-plugins/forc-lsp/", version = "0.66.7" }
60+
forc-tx = { path = "forc-plugins/forc-tx/", version = "0.66.7" }
61+
forc-migrate = { path = "forc-plugins/forc-migrate/", version = "0.66.7" }
6262

63-
sway-ast = { path = "sway-ast/", version = "0.66.6" }
64-
sway-core = { path = "sway-core/", version = "0.66.6" }
65-
sway-error = { path = "sway-error/", version = "0.66.6" }
66-
sway-features = { path = "sway-features/", version = "0.66.6" }
67-
sway-lsp = { path = "sway-lsp/", version = "0.66.6" }
68-
sway-parse = { path = "sway-parse/", version = "0.66.6" }
69-
sway-types = { path = "sway-types/", version = "0.66.6" }
70-
sway-utils = { path = "sway-utils/", version = "0.66.6" }
71-
swayfmt = { path = "swayfmt/", version = "0.66.6" }
63+
sway-ast = { path = "sway-ast/", version = "0.66.7" }
64+
sway-core = { path = "sway-core/", version = "0.66.7" }
65+
sway-error = { path = "sway-error/", version = "0.66.7" }
66+
sway-features = { path = "sway-features/", version = "0.66.7" }
67+
sway-lsp = { path = "sway-lsp/", version = "0.66.7" }
68+
sway-parse = { path = "sway-parse/", version = "0.66.7" }
69+
sway-types = { path = "sway-types/", version = "0.66.7" }
70+
sway-utils = { path = "sway-utils/", version = "0.66.7" }
71+
swayfmt = { path = "swayfmt/", version = "0.66.7" }
7272

7373
# Sway IR
74-
sway-ir = { path = "sway-ir/", version = "0.66.6" }
75-
sway-ir-macros = { path = "sway-ir/sway-ir-macros", version = "0.66.6" }
74+
sway-ir = { path = "sway-ir/", version = "0.66.7" }
75+
sway-ir-macros = { path = "sway-ir/sway-ir-macros", version = "0.66.7" }
7676

7777
#
7878
# External Fuel dependencies

0 commit comments

Comments
 (0)