Skip to content

Commit

Permalink
chore: bump to 0.66.7 (#6894)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
sdankel authored Feb 5, 2025
1 parent c6daba5 commit 5ed7cec
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 63 deletions.
74 changes: 37 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exclude = ["examples/*", "swayfmt/test_macros", "forc-test/test_data"]

[workspace.package]
edition = "2021"
version = "0.66.6"
version = "0.66.7"
authors = ["Fuel Labs <[email protected]>"]
homepage = "https://fuel.network/"
license = "Apache-2.0"
Expand All @@ -43,36 +43,36 @@ repository = "https://github.com/FuelLabs/sway"
# Internal dependencies in order to propagate `workspace.version`
#

forc = { path = "forc/", version = "0.66.6" }
forc-pkg = { path = "forc-pkg/", version = "0.66.6" }
forc-test = { path = "forc-test/", version = "0.66.6" }
forc-tracing = { path = "forc-tracing/", version = "0.66.6" }
forc-util = { path = "forc-util/", version = "0.66.6" }
forc = { path = "forc/", version = "0.66.7" }
forc-pkg = { path = "forc-pkg/", version = "0.66.7" }
forc-test = { path = "forc-test/", version = "0.66.7" }
forc-tracing = { path = "forc-tracing/", version = "0.66.7" }
forc-util = { path = "forc-util/", version = "0.66.7" }

# Forc plugins
forc-plugins = { path = "forc-plugins/", version = "0.66.6" }
forc-client = { path = "forc-plugins/forc-client/", version = "0.66.6" }
forc-crypto = { path = "forc-plugins/forc-crypto/", version = "0.66.6" }
forc-debug = { path = "forc-plugins/forc-debug/", version = "0.66.6" }
forc-doc = { path = "forc-plugins/forc-doc/", version = "0.66.6" }
forc-fmt = { path = "forc-plugins/forc-fmt/", version = "0.66.6" }
forc-lsp = { path = "forc-plugins/forc-lsp/", version = "0.66.6" }
forc-tx = { path = "forc-plugins/forc-tx/", version = "0.66.6" }
forc-migrate = { path = "forc-plugins/forc-migrate/", version = "0.66.6" }
forc-plugins = { path = "forc-plugins/", version = "0.66.7" }
forc-client = { path = "forc-plugins/forc-client/", version = "0.66.7" }
forc-crypto = { path = "forc-plugins/forc-crypto/", version = "0.66.7" }
forc-debug = { path = "forc-plugins/forc-debug/", version = "0.66.7" }
forc-doc = { path = "forc-plugins/forc-doc/", version = "0.66.7" }
forc-fmt = { path = "forc-plugins/forc-fmt/", version = "0.66.7" }
forc-lsp = { path = "forc-plugins/forc-lsp/", version = "0.66.7" }
forc-tx = { path = "forc-plugins/forc-tx/", version = "0.66.7" }
forc-migrate = { path = "forc-plugins/forc-migrate/", version = "0.66.7" }

sway-ast = { path = "sway-ast/", version = "0.66.6" }
sway-core = { path = "sway-core/", version = "0.66.6" }
sway-error = { path = "sway-error/", version = "0.66.6" }
sway-features = { path = "sway-features/", version = "0.66.6" }
sway-lsp = { path = "sway-lsp/", version = "0.66.6" }
sway-parse = { path = "sway-parse/", version = "0.66.6" }
sway-types = { path = "sway-types/", version = "0.66.6" }
sway-utils = { path = "sway-utils/", version = "0.66.6" }
swayfmt = { path = "swayfmt/", version = "0.66.6" }
sway-ast = { path = "sway-ast/", version = "0.66.7" }
sway-core = { path = "sway-core/", version = "0.66.7" }
sway-error = { path = "sway-error/", version = "0.66.7" }
sway-features = { path = "sway-features/", version = "0.66.7" }
sway-lsp = { path = "sway-lsp/", version = "0.66.7" }
sway-parse = { path = "sway-parse/", version = "0.66.7" }
sway-types = { path = "sway-types/", version = "0.66.7" }
sway-utils = { path = "sway-utils/", version = "0.66.7" }
swayfmt = { path = "swayfmt/", version = "0.66.7" }

# Sway IR
sway-ir = { path = "sway-ir/", version = "0.66.6" }
sway-ir-macros = { path = "sway-ir/sway-ir-macros", version = "0.66.6" }
sway-ir = { path = "sway-ir/", version = "0.66.7" }
sway-ir-macros = { path = "sway-ir/sway-ir-macros", version = "0.66.7" }

#
# External Fuel dependencies
Expand Down

0 comments on commit 5ed7cec

Please sign in to comment.