diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ad5755d..237c7f9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] - yyyy-mm-dd - -Description of the upcoming release here. +## [v0.23.0] ### Added @@ -20,6 +18,7 @@ Description of the upcoming release here. - [#265](https://github.com/FuelLabs/sway-libs/pull/265) Enables the metadata events now that the Rust SDK supports wrapped heap types. - [#269](https://github.com/FuelLabs/sway-libs/pull/269) Hashes the string "admin" and with the bits of an Identity when creating a storage slot to storage an admin in the Admin Library. +- [#276](https://github.com/FuelLabs/sway-libs/pull/276) Prepares for v0.23.0 release. - [#278](https://github.com/FuelLabs/sway-libs/pull/278) Deprecates the Fixed Point number library. ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 00999e11..ffba569f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,4 @@ [package] name = "sway-libs" -version = "0.22.0" +version = "0.23.0" edition = "2021" diff --git a/README.md b/README.md index 4792cdf8..69f23263 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ For implementation details on the libraries please see the [Sway Libs Docs](http To import a library, the following dependency should be added to the project's `Forc.toml` file under `[dependencies]`. ```rust -sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.22.0" } +sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.23.0" } ``` > **NOTE:** diff --git a/docs/book/src/getting_started/index.md b/docs/book/src/getting_started/index.md index 305366c1..ee3c903a 100644 --- a/docs/book/src/getting_started/index.md +++ b/docs/book/src/getting_started/index.md @@ -5,7 +5,7 @@ To import any library, the following dependency should be added to the project's `Forc.toml` file under `[dependencies]`. ```sway -sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.22.0" } +sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.23.0" } ``` For reference, here is a complete `Forc.toml` file: @@ -18,7 +18,7 @@ license = "Apache-2.0" name = "MyProject" [dependencies] -sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.22.0" } +sway_libs = { git = "https://github.com/FuelLabs/sway-libs", tag = "v0.23.0" } ``` > **NOTE:** Be sure to set the tag to the latest release.