Skip to content
Open
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
7 changes: 0 additions & 7 deletions .changeset/clean-lizards-tease.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-panthers-invite.md

This file was deleted.

6 changes: 6 additions & 0 deletions docs/pages/changelogs/coins-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Coins SDK Changelog


## 0.3.4

### Patch Changes

- 9f74986: Add new leaderboard and featured creators queries

## 0.3.3

### Patch Changes
Expand Down
8 changes: 8 additions & 0 deletions docs/pages/changelogs/coins.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Coins Changelog


## 2.4.0

### Minor Changes

- 09fb252: Make trusted senders in coin hooks modifiable

Trusted message senders can now be added or removed after hook deployment instead of being hardcoded at deployment time.

## 2.3.1

### Patch Changes
Expand Down
7 changes: 7 additions & 0 deletions nft-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nft-docs

## 0.0.34

### Patch Changes

- Updated dependencies [9f74986]
- @zoralabs/coins-sdk@0.3.4

## 0.0.33

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion nft-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nft-docs",
"version": "0.0.33",
"version": "0.0.34",
"type": "module",
"private": true,
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/coins-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @zoralabs/coins-sdk

## 0.3.4

### Patch Changes

- 9f74986: Add new leaderboard and featured creators queries

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/coins-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoralabs/coins-sdk",
"version": "0.3.3",
"version": "0.3.4",
"repository": "https://github.com/ourzora/zora-protocol",
"license": "MIT",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/coins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @zoralabs/coins

## 2.4.0

### Minor Changes

- 09fb252: Make trusted senders in coin hooks modifiable

Trusted message senders can now be added or removed after hook deployment instead of being hardcoded at deployment time.

## 2.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/coins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoralabs/coins",
"version": "2.3.1",
"version": "2.4.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/coins/src/version/ContractVersionBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ import {IVersionedContract} from "@zoralabs/shared-contracts/interfaces/IVersion
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";
}
}