Skip to content

Commit

Permalink
Version Packages (#234)
Browse files Browse the repository at this point in the history
* Version Packages

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Dan Oved <[email protected]>
  • Loading branch information
3 people authored Sep 29, 2023
1 parent 4a7899e commit 11648bf
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 33 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-dolphins-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-socks-melt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-avocados-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-cows-grin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-horses-battle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-comics-sniff.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @zoralabs/zora-1155-contracts

## 1.6.0

### Minor Changes

- 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)

## 1.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoralabs/zora-1155-contracts",
"version": "1.5.0",
"version": "1.6.0",
"repository": "[email protected]:ourzora/creator-contracts.git",
"author": "Iain <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/version/ContractVersionBase.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is automatically generated by code; do not manually update
// Last updated on 2023-09-26T21:31:20.708Z
// Last updated on 2023-09-29T18:12:06.268Z
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

Expand All @@ -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.5.0";
return "1.6.0";
}
}

0 comments on commit 11648bf

Please sign in to comment.