diff --git a/CHANGELOG.md b/CHANGELOG.md index b79abb8..9752fd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.2.1 2024-12-02 + +- Reworked the `get_deployments` view method. + ## 0.2.0 2024-12-02 - Update dependencies. diff --git a/Cargo.lock b/Cargo.lock index 4c2b449..71078b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "aurora-borsh-converter" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "near-sdk", @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "aurora-controller-factory" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "hex", diff --git a/Cargo.toml b/Cargo.toml index 2c61700..1b837a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace.package] authors = ["Aurora Labs "] -version = "0.2.0" +version = "0.2.1" edition = "2021" homepage = "https://github.com/aurora-is-near/aurora-controller-factory" repository = "https://github.com/aurora-is-near/aurora-controller-factory" diff --git a/contract/src/event.rs b/contract/src/event.rs index 28a239c..3a00b12 100644 --- a/contract/src/event.rs +++ b/contract/src/event.rs @@ -84,6 +84,6 @@ fn test_stringify_event_metadata() { assert_eq!( event_metadata.to_string(), - r#"{"producer":"aurora-controller-factory","version":"0.2.0","event":"add_release_info","metadata":{"hash":"9316bf4c7aa0913f26ef8eebdcb11f3c63bb88c65eb717abfec8ade1b707620c","version":"3.5.0","is_blob_exist":false,"downgrade_hash":null,"description":"Aurora SILO 3.5.0"}}"# + r#"{"producer":"aurora-controller-factory","version":"0.2.1","event":"add_release_info","metadata":{"hash":"9316bf4c7aa0913f26ef8eebdcb11f3c63bb88c65eb717abfec8ade1b707620c","version":"3.5.0","is_blob_exist":false,"downgrade_hash":null,"description":"Aurora SILO 3.5.0"}}"# ); }