Skip to content

Commit

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

* bump up contract version to match package version

---------

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 Jul 24, 2023
1 parent cdbb808 commit 4cb2ba3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .changeset/big-bikes-sin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-kings-wash.md

This file was deleted.

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

## 1.3.3

### Patch Changes

- 498998f: Added pgn sepolia
Added pgn mainnet
- cc3b55a: New base mainnet deploy
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.3.2",
"version": "1.3.3",
"repository": "[email protected]:ourzora/creator-contracts.git",
"author": "Iain <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/version/ContractVersionBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,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.3.2";
return "1.3.3";
}
}
2 changes: 1 addition & 1 deletion test/factory/ZoraCreator1155Factory.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ contract ZoraCreator1155FactoryTest is Test {
}

function test_contractVersion() external {
assertEq(factory.contractVersion(), "1.3.2");
assertEq(factory.contractVersion(), "1.3.3");
}

function test_contractName() external {
Expand Down
2 changes: 1 addition & 1 deletion test/nft/ZoraCreator1155.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ contract ZoraCreator1155Test is Test {
function test_contractVersion() external {
init();

assertEq(target.contractVersion(), "1.3.2");
assertEq(target.contractVersion(), "1.3.3");
}

function test_assumeLastTokenIdMatches() external {
Expand Down

0 comments on commit 4cb2ba3

Please sign in to comment.