From d5ffb8e063684d8528abf029583cb2c737853825 Mon Sep 17 00:00:00 2001 From: steven2308 Date: Tue, 30 Jan 2024 10:25:01 -0500 Subject: [PATCH] Bumps version to 2.4.3. --- CHANGELOG.md | 9 +++++++++ contracts/RMRK/core/RMRKCore.sol | 2 +- package.json | 2 +- tsconfig.json | 1 - 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf1195af..b069b77f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.4.3] - 2024-01-30 + +### Changed + + - Now requires node>=18. + - Moves dependencies to devDependencies. + - Adds missing prettier and linting devDependencies. + - Renames prepare script to prepare:commit so prettier and dodoc do not run on installation. + ## [2.4.2] - 2024-01-16 ### Changed diff --git a/contracts/RMRK/core/RMRKCore.sol b/contracts/RMRK/core/RMRKCore.sol index 15079984..ee55096f 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.4.2"; + string private constant _VERSION = "2.4.3"; bytes4 private constant _RMRK_INTERFACE = 0x524D524B; // "RMRK" in ASCII hex /** diff --git a/package.json b/package.json index b8f9a74a..34e646be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rmrk-team/evm-contracts", - "version": "2.4.2", + "version": "2.4.3", "license": "Apache-2.0", "files": [ "contracts/RMRK/*", diff --git a/tsconfig.json b/tsconfig.json index 0f7a882d..d245eb4b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,4 +13,3 @@ "include": ["./scripts", "./test", "./typechain-types"], "files": ["./hardhat.config.ts"], } -