From 835269dc922e56eb0f19be633245ec58cb7ab7da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:32:43 -0400 Subject: [PATCH] Version Packages (#196) Co-authored-by: github-actions[bot] --- .changeset/modern-coins-roll.md | 5 ----- .changeset/pink-pants-decide.md | 5 ----- .changeset/thin-geese-flash.md | 6 ------ .changeset/witty-numbers-share.md | 6 ------ CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- src/version/ContractVersionBase.sol | 4 ++-- 7 files changed, 17 insertions(+), 25 deletions(-) delete mode 100644 .changeset/modern-coins-roll.md delete mode 100644 .changeset/pink-pants-decide.md delete mode 100644 .changeset/thin-geese-flash.md delete mode 100644 .changeset/witty-numbers-share.md diff --git a/.changeset/modern-coins-roll.md b/.changeset/modern-coins-roll.md deleted file mode 100644 index 4374a1e1a..000000000 --- a/.changeset/modern-coins-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@zoralabs/zora-1155-contracts": patch ---- - -Fix types reference for package export diff --git a/.changeset/pink-pants-decide.md b/.changeset/pink-pants-decide.md deleted file mode 100644 index d8c139ce0..000000000 --- a/.changeset/pink-pants-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@zoralabs/zora-1155-contracts": minor ---- - -Add TokenId to redeemInstructionsHashIsAllowed for Redeem Contracts diff --git a/.changeset/thin-geese-flash.md b/.changeset/thin-geese-flash.md deleted file mode 100644 index 7941a7084..000000000 --- a/.changeset/thin-geese-flash.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@zoralabs/zora-1155-contracts": patch ---- - -- Ensures sales configs can only be updated for the token ids specified -- Deprecates support with 'ZoraCreatorRedeemMinterStrategy' v1.0.1 diff --git a/.changeset/witty-numbers-share.md b/.changeset/witty-numbers-share.md deleted file mode 100644 index 9200b936f..000000000 --- a/.changeset/witty-numbers-share.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@zoralabs/zora-1155-contracts": minor ---- - -- Patches the 1155 `callSale` function to ensure that the token id passed matches the token id encoded in the generic calldata to forward -- Updates the redeem minter to v1.1.0 to support b2r per an 1155 token id diff --git a/CHANGELOG.md b/CHANGELOG.md index 748733569..f27e7ab37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # @zoralabs/zora-1155-contracts +## 1.5.0 + +### Minor Changes + +- 1bf2d52: Add TokenId to redeemInstructionsHashIsAllowed for Redeem Contracts +- a170f1f: - Patches the 1155 `callSale` function to ensure that the token id passed matches the token id encoded in the generic calldata to forward + - Updates the redeem minter to v1.1.0 to support b2r per an 1155 token id + +### Patch Changes + +- b1dbb47: Fix types reference for package export +- 4cb56d4: - Ensures sales configs can only be updated for the token ids specified + - Deprecates support with 'ZoraCreatorRedeemMinterStrategy' v1.0.1 + ## 1.4.0 ### Minor Changes diff --git a/package.json b/package.json index 85b33a90e..21d61681a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zoralabs/zora-1155-contracts", - "version": "1.4.0", + "version": "1.5.0", "repository": "git@github.com:ourzora/creator-contracts.git", "author": "Iain ", "license": "MIT", diff --git a/src/version/ContractVersionBase.sol b/src/version/ContractVersionBase.sol index 2bfe4557d..257e9150a 100644 --- a/src/version/ContractVersionBase.sol +++ b/src/version/ContractVersionBase.sol @@ -1,5 +1,5 @@ // This file is automatically generated by code; do not manually update -// Last updated on 2023-09-19T23:53:55.032Z +// Last updated on 2023-09-26T21:31:20.708Z // SPDX-License-Identifier: MIT pragma solidity 0.8.17; @@ -10,6 +10,6 @@ import {IVersionedContract} from "../interfaces/IVersionedContract.sol"; contract ContractVersionBase is IVersionedContract { /// @notice The version of the contract function contractVersion() external pure override returns (string memory) { - return "1.4.0"; + return "1.5.0"; } }