diff --git a/.changeset/modern-plants-matter.md b/.changeset/modern-plants-matter.md deleted file mode 100644 index 116ca0135..000000000 --- a/.changeset/modern-plants-matter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@zoralabs/zora-1155-contracts": patch ---- - -Add first minter payouts as chain sponsor diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a8052c48..b5708b786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @zoralabs/zora-1155-contracts +## 1.6.1 + +### Patch Changes + +- b83e1b6: Add first minter payouts as chain sponsor + ## 1.6.0 ### Minor Changes @@ -7,6 +13,7 @@ - 399b8e6: Adds first minter rewards to zora 1155 contracts. - 399b8e6: Added deterministic contract creation from the Zora1155 factory, Preminter, and Upgrade Gate - 399b8e6: Added the PremintExecutor contract, and updated erc1155 to support delegated minting + * Add first minter rewards * [Separate upgrade gate into new contract](https://github.com/ourzora/zora-1155-contracts/pull/204) diff --git a/package.json b/package.json index a84611b54..ca8458805 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zoralabs/zora-1155-contracts", - "version": "1.6.0", + "version": "1.6.1", "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 88c2721b4..ea53c5376 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-29T18:12:06.268Z +// Last updated on 2023-09-29T18:46:17.987Z // 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.6.0"; + return "1.6.1"; } }