From ade6077a83657498deb2f9bf46aa02ced03c3b01 Mon Sep 17 00:00:00 2001 From: IGI-111 Date: Mon, 22 Jul 2024 07:53:53 +0200 Subject: [PATCH] Use new namespace syntax for storage (#120) --- .github/workflows/ci.yaml | 2 +- CHANGELOG.md | 1 + README.md | 6 +++--- docs/src/index.md | 2 +- examples/src14-simple-proxy/minimal/src/minimal.sw | 4 +--- examples/src14-simple-proxy/owned/src/owned.sw | 14 +++++++------- 6 files changed, 14 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 08621d4..22316f8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ env: CARGO_TERM_COLOR: always REGISTRY: ghcr.io RUST_VERSION: 1.77.0 - FORC_VERSION: 0.60.0 + FORC_VERSION: 0.61.0 CORE_VERSION: 0.26.0 PATH_TO_SCRIPTS: .github/scripts diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a1fc0..6e4bcea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ Description of the upcoming release here. - [#103](https://github.com/FuelLabs/sway-standards/pull/103) Removes standards in the `./SRC` folder in favor of `./docs`. - [#106](https://github.com/FuelLabs/sway-standards/pull/106) Updates links from the Sway Book to Docs Hub. +- [#120](https://github.com/FuelLabs/sway-standards/pull/120) Updates repository to forc v0.61.0 and uses new namespace in SRC-14 example. ### Fixed v0.5.1 diff --git a/README.md b/README.md index ff0a73b..73e4c5b 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ - - + + @@ -162,7 +162,7 @@ Example of a minimal SRC-14 implementation with no access control. Example of a SRC-14 implementation that also implements [SRC-5](https://docs.fuel.network/docs/sway-standards/src-5-ownership/). > **Note** -> All standards currently use `forc v0.60.0`. +> All standards currently use `forc v0.61.0`.