diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ea7862..5aaa4d14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.6] - 2024-06-17 + +### Added + + - RMRKMinifiedEquippableChildAutoAcceptMock. Which bypasses accepting children. + ## [2.5.5] - 2024-04-10 ### Changed diff --git a/contracts/RMRK/core/RMRKCore.sol b/contracts/RMRK/core/RMRKCore.sol index 8bbe0293..768cc052 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.5"; + string private constant _VERSION = "2.5.6"; bytes4 private constant _RMRK_INTERFACE = 0x524D524B; // "RMRK" in ASCII hex /** diff --git a/package.json b/package.json index 032ed27c..4099fc35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rmrk-team/evm-contracts", - "version": "2.5.5", + "version": "2.5.6", "license": "Apache-2.0", "files": [ "contracts/RMRK/*",