Skip to content

Commit

Permalink
Bumps version to 2.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
steven2308 committed Mar 1, 2024
1 parent 5134326 commit 8b18ba2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 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.0] - 2024-03-01

### Added

- Adds IRMRKCatalogExtended with several utility methods to retrieve and set data on the catalog.
- Adds RMRKCatalogFactory which allows anyone to deploy a RMRKCatalogImpl instance and keep tracks of the deployed instances per user.

### Changed

- Moves RMRKCatalogImpl to contracts/implementations/catalog/RMRKCatalogImpl.sol
- RMRKCatalogImpl now implements IRMRKCatalogExtended.
- Makes getEquippableSlotsFromParent public on render utils.

### Fixed

- Custom chain hardhat configuration for Shibuya and Astar.

## [2.4.4] - 2024-02-08

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

/**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rmrk-team/evm-contracts",
"version": "2.4.4",
"version": "2.5.0",
"license": "Apache-2.0",
"files": [
"contracts/RMRK/*",
Expand All @@ -17,7 +17,7 @@
"node": ">=18"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1"
"@openzeppelin/contracts": "^5.0.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
Expand Down

0 comments on commit 8b18ba2

Please sign in to comment.