Skip to content

Commit

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

* change to minor patch

* fix contract verison

---------

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 Nov 9, 2023
1 parent bd5854c commit 3d2d1ae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-fireants-rest.md

This file was deleted.

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

## 2.4.0

### Minor Changes

- 366ac20: Fix broken storage layout by not including an interface on CreatorRoyaltiesControl
- e25ac54: ignore nonzero supply royalty schedule

## 2.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/1155-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoralabs/zora-1155-contracts",
"version": "2.3.1",
"version": "2.4.0",
"repository": "[email protected]:ourzora/zora-protocol.git",
"author": "Iain <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/1155-contracts/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-11-06T00:58:51.853Z
// Last updated on 2023-11-09T00:33:12.481Z
// 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 "2.3.1";
return "2.4.0";
}
}

0 comments on commit 3d2d1ae

Please sign in to comment.