Skip to content

Commit 44a179b

Browse files
authored
Revert "Version Packages (#1391)" (#1400)
This reverts commit 7aa98c7.
1 parent 131c719 commit 44a179b

File tree

6 files changed

+14
-22
lines changed

6 files changed

+14
-22
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@zoralabs/coins": patch
3+
---
4+
5+
Flatten hooks into single hook implementation
6+
7+
Consolidates multiple hook contracts into a single unified hook for simplified architecture and better maintainability.

.changeset/many-cows-sneeze.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@zoralabs/coins": patch
3+
---
4+
5+
Ignore collecting from liquidity positions with empty fee growth

docs/pages/changelogs/coins.mdx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
# Coins Changelog
22

33

4-
## 2.2.1
5-
6-
### Patch Changes
7-
8-
- [7ec6134b](https://github.com/ourzora/zora-protocol/commit/7ec6134b): Flatten hooks into single hook implementation
9-
10-
Consolidates multiple hook contracts into a single unified hook for simplified architecture and better maintainability.
11-
12-
- [ae9424ab](https://github.com/ourzora/zora-protocol/commit/ae9424ab): Ignore collecting from liquidity positions with empty fee growth
13-
144
## 2.2.0
155

166
### Minor Changes

packages/coins/CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# @zoralabs/coins
22

3-
## 2.2.1
4-
5-
### Patch Changes
6-
7-
- 7ec6134b: Flatten hooks into single hook implementation
8-
9-
Consolidates multiple hook contracts into a single unified hook for simplified architecture and better maintainability.
10-
11-
- ae9424ab: Ignore collecting from liquidity positions with empty fee growth
12-
133
## 2.2.0
144

155
### Minor Changes

packages/coins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zoralabs/coins",
3-
"version": "2.2.1",
3+
"version": "2.2.0",
44
"type": "module",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.js",

packages/coins/src/version/ContractVersionBase.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ import {IVersionedContract} from "@zoralabs/shared-contracts/interfaces/IVersion
99
contract ContractVersionBase is IVersionedContract {
1010
/// @notice The version of the contract
1111
function contractVersion() external pure override returns (string memory) {
12-
return "2.2.1";
12+
return "2.2.0";
1313
}
1414
}

0 commit comments

Comments
 (0)