Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge after 2.5.3. #267

Merged
merged 16 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,36 @@ 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.3] - 2024-03-19

### Changed

- Token Attributes: Refactor on token attributes to reuse code and allow multiple collections and tokenIds on setters and getters.
- Token Attributes: Orders all methods by group and then alphabetically.
- Token Attributes: Includes methods for signed integers.
- Token Attributes: Improves tests and fixes emit assertions.
- Token Attributes: Renames Issuer for Owner in token attributes.
- Token Attributes: Renames methods to set and get collection attributes metadata to make it explicit they are per collection. Adds full test coverage for token attributes.
- Token Attributes: Updates interfaceId.


## [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.0";
string private constant _VERSION = "2.5.3";
bytes4 private constant _RMRK_INTERFACE = 0x524D524B; // "RMRK" in ASCII hex

/**
Expand Down
Loading
Loading