From d175ab9f5c08ed06b199a283e408184884688991 Mon Sep 17 00:00:00 2001 From: steven2308 Date: Wed, 10 Apr 2024 10:10:44 -0500 Subject: [PATCH] Bumps version to 2.5.5. --- CHANGELOG.md | 7 +++++++ contracts/RMRK/core/RMRKCore.sol | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3368581..55ea7862 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## [2.5.5] - 2024-04-10 + +### Changed + + - getAssetMetadata core implementation is now virtual. + - RMRKTokenHolder methods are made public instead of external. + ## [2.5.4] - 2024-03-21 ### Changed diff --git a/contracts/RMRK/core/RMRKCore.sol b/contracts/RMRK/core/RMRKCore.sol index 08dbb9b4..8bbe0293 100644 --- a/contracts/RMRK/core/RMRKCore.sol +++ b/contracts/RMRK/core/RMRKCore.sol @@ -9,7 +9,7 @@ pragma solidity ^0.8.21; * @dev This is currently just a passthrough contract which allows for granular editing of base-level ERC721 functions. */ contract RMRKCore { - string private constant _VERSION = "2.5.4"; + string private constant _VERSION = "2.5.5"; bytes4 private constant _RMRK_INTERFACE = 0x524D524B; // "RMRK" in ASCII hex /** diff --git a/package.json b/package.json index 090b6369..032ed27c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rmrk-team/evm-contracts", - "version": "2.5.4", + "version": "2.5.5", "license": "Apache-2.0", "files": [ "contracts/RMRK/*",