Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.5.2 version bump #385

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/funny-rats-draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-poems-cry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-swans-help.md

This file was deleted.

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

## 2.5.2

### Patch Changes

- e4edaac2: fixed bug where premint config v2 did not have correct eip-712 domain. fixed bug in CreatorAttribution event where structHash was not included in it

## 2.5.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.5.1",
"version": "2.5.2",
"repository": "git@github.com:ourzora/zora-protocol.git",
"author": "Iain <iain@zora.co>",
"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-21T02:31:53.169Z
// Last updated on 2023-11-21T23:36:37.906Z
// 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.5.1";
return "2.5.2";
}
}
9 changes: 9 additions & 0 deletions packages/protocol-deployments/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @zoralabs/premint-sdk

## 0.0.7

### Patch Changes

- 128b05c9: Updated determinstic preminter deployment script to not fail if already deployed
- 128b05c9: Deployed 2.5.1 to zora sepolia and zora goerli
- Updated dependencies [e4edaac2]
- @zoralabs/zora-1155-contracts@2.5.2

## 0.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol-deployments/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoralabs/protocol-deployments",
"version": "0.0.6",
"version": "0.0.7",
"repository": "https://github.com/ourzora/zora-protocol",
"license": "MIT",
"main": "./dist/index.js",
Expand Down
Loading