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

Version Packages #358

Merged
merged 4 commits into from
Nov 14, 2023
Merged
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/chilly-gifts-double.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/nervous-monkeys-glow.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.4.1

### Patch Changes

- 63ef7f6: Added missing functions to IZoraCreator1155

## 2.4.0

### Minor 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.4.0",
"version": "2.4.1",
"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-02T19:45:49.899Z
// Last updated on 2023-11-14T06:41:37.935Z
// 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.4.0";
return "2.4.1";
}
}
12 changes: 11 additions & 1 deletion packages/protocol-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# @zoralabs/premint-sdk
# @zoralabs/protocol-sdk

## 0.3.0

### Minor Changes

- 40e0b32:
- rename premint-sdk to protocol-sdk
- added minting sdk, usable with `createMintClient`
- added 1155 creation sdk, usable with `create1155CreatorClient`
- premint sdk is now useable with `createPremintClient`

## 0.1.1

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