Skip to content

Commit 0ce5bc5

Browse files
Version Packages
1 parent ae9424a commit 0ce5bc5

File tree

6 files changed

+22
-14
lines changed

6 files changed

+22
-14
lines changed

.changeset/flatten-hooks-into-single-hook.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/many-cows-sneeze.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/pages/changelogs/coins.mdx

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

33

4+
## 2.2.1
5+
6+
### Patch Changes
7+
8+
- 7ec6134: 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+
- ae9424a: Ignore collecting from liquidity positions with empty fee growth
13+
414
## 2.2.0
515

616
### Minor Changes

packages/coins/CHANGELOG.md

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

3+
## 2.2.1
4+
5+
### Patch Changes
6+
7+
- 7ec6134: 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+
- ae9424a: Ignore collecting from liquidity positions with empty fee growth
12+
313
## 2.2.0
414

515
### 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.0",
3+
"version": "2.2.1",
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.0";
12+
return "2.2.1";
1313
}
1414
}

0 commit comments

Comments
 (0)