Skip to content

Commit

Permalink
Bumps version to 2.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
steven2308 committed Mar 8, 2024
1 parent 7c9d05d commit b00fd30
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.2] - 2024-03-08

### Changed

- Token Attributes: Refactor on token attributes to reuse code and allow multiple collections and tokenIds on setters and getters.
- Token Attributes: No long uses structs as return values for batch getters.
- Token Attributes: Batch setters and getters can now receive multiple collections and tokenIds.
- Token Attributes: If a single collection, tokenId or attribute is sent on batch getter/setters it will use it for all.
- Token Attributes: Improved readability and consistency in function signatures

## [2.5.1] - 2024-03-02

### Changed

- RMRKTokenHolder (IERC7590-Draft Implementation) now reverts if transferred ERC-20 balance is not the specified amount.
- Improves @dev comment on IERC7401, directOwnerOf method.

## [2.5.0] - 2024-03-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion contracts/RMRK/core/RMRKCore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.1";
string private constant _VERSION = "2.5.2";
bytes4 private constant _RMRK_INTERFACE = 0x524D524B; // "RMRK" in ASCII hex

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rmrk-team/evm-contracts",
"version": "2.5.1",
"version": "2.5.2",
"license": "Apache-2.0",
"files": [
"contracts/RMRK/*",
Expand Down

0 comments on commit b00fd30

Please sign in to comment.