Skip to content

Commit fc02dc9

Browse files
committed
bump version
1 parent c96e0c5 commit fc02dc9

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-13
lines changed

.changeset/nice-doors-destroy.md

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

docs/pages/changelogs/coins.mdx

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

33

4+
## 2.2.1
5+
6+
### Patch Changes
7+
8+
- [c96e0c5e](https://github.com/ourzora/zora-protocol/commit/c96e0c5e): Fix bug where liquidity cannot be migrated if there is a position with 0 liquidity
9+
410
## 2.2.0
511

612
### Minor Changes

packages/coins/CHANGELOG.md

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

3+
## 2.2.1
4+
5+
### Patch Changes
6+
7+
- c96e0c5e: Fix bug where liquidity cannot be migrated if there is a position with 0 liquidity
8+
39
## 2.2.0
410

511
### Minor Changes

packages/coins/addresses/8453.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"COIN_V3_IMPL": "0x45Bf86430af7CD071Ea23aE52325A78C8d12aD5a",
44
"COIN_V4_IMPL": "0xca72309AaF706d290E08608b1Af47943902f69b2",
55
"COIN_VERSION": "1.1.0",
6-
"CREATOR_COIN_HOOK": "0xd61A675F8a0c67A73DC3B54FB7318B4D91409040",
7-
"CREATOR_COIN_HOOK_SALT": "0x0000000000000000000000000000000000000000000000000000000000000ae8",
6+
"CREATOR_COIN_HOOK": "0x1258e5f3C71ca9dCE95Ce734Ba5759532E46D040",
7+
"CREATOR_COIN_HOOK_SALT": "0x00000000000000000000000000000000000000000000000000000000000029b1",
88
"CREATOR_COIN_IMPL": "0x88CC4E08C7608723f3E44e17aC669Fb43b6A8313",
99
"HOOK_UPGRADE_GATE": "0xD88f6BdD765313CaFA5888C177c325E2C3AbF2D2",
1010
"ZORA_FACTORY": "0x777777751622c0d3258f214F9DF38E35BF45baF3",
11-
"ZORA_FACTORY_IMPL": "0x0e2ea62E5377D46FeF114A60AfBE3d5eA7490577",
12-
"ZORA_V4_COIN_HOOK": "0x9ea932730A7787000042e34390B8E435dD839040",
13-
"ZORA_V4_COIN_HOOK_SALT": "0x0000000000000000000000000000000000000000000000000000000000002fa2",
14-
"ZORA_HOOK_REGISTRY": "0x777777C4c14b133858c3982D41Dbf02509fc18d7"
11+
"ZORA_FACTORY_IMPL": "0x57e338b97757f6E416965BEB9A5Cd2DB48b10c42",
12+
"ZORA_HOOK_REGISTRY": "0x777777C4c14b133858c3982D41Dbf02509fc18d7",
13+
"ZORA_V4_COIN_HOOK": "0x2b15a16B3Ef024005bA899Bb51764FCd58Cf9040",
14+
"ZORA_V4_COIN_HOOK_SALT": "0x0000000000000000000000000000000000000000000000000000000000000f90"
1515
}

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)