@bananapus/721-hook-v6 0.0.49 → 0.0.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -12,6 +12,15 @@ This file describes the verified change from `nana-721-hook-v5` to the current `
12
12
  - `JB721TiersHookProjectDeployer`
13
13
  - `JB721TiersHookLib`
14
14
 
15
+ ## 0.0.50 — Bump nana-core-v6 to 0.0.53
16
+
17
+ `@bananapus/core-v6@0.0.53` ([nana-core-v6 PR #145](https://github.com/Bananapus/nana-core-v6/pull/145)) drops the `via_ir` requirement on `JBCashOutHookSpecsLib`, which lets this package consume the cross-project cashout work (`payAfterCashOutTokensOf` / `addToBalanceAfterCashOutTokensOf`) without needing `via_ir = true` in its own foundry profile. `JB721TiersHookStore.tiersOf` is not via-ir-tolerant under solc 0.8.28 (its category loop trips the Yul stack ceiling), so this dep release is what makes the bump possible at all.
18
+
19
+ - `JBPayDataHookRulesetMetadata` mirrors the new core `pauseCrossProjectFeeFreeInflows` field (bit 80 in the packed metadata word). Forwarded into the canonical `JBRulesetMetadata` at the three call sites in `JB721TiersHookProjectDeployer` (`_launchProjectFor`, `_launchRulesetsFor`, `_queueRulesetsFor`).
20
+ - All `JBRulesetMetadata` test literals patched to include `pauseCrossProjectFeeFreeInflows: false`.
21
+
22
+ `package.json`: version `0.0.49 → 0.0.50`, core dep `^0.0.48 → ^0.0.53`.
23
+
15
24
  ## Summary
16
25
 
17
26
  - v6 adds tier-level split routing. `JB721TierConfig` and the surrounding minting logic now support `splitPercent` and `splits`.
package/foundry.toml CHANGED
@@ -1,5 +1,6 @@
1
1
  [profile.default]
2
2
  solc = '0.8.28'
3
+ bytecode_hash = "none"
3
4
  evm_version = 'cancun'
4
5
  optimizer_runs = 200
5
6
  libs = ["node_modules", "lib"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bananapus/721-hook-v6",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,9 +29,9 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@bananapus/address-registry-v6": "^0.0.25",
32
- "@bananapus/core-v6": "^0.0.48",
33
- "@bananapus/ownable-v6": "^0.0.24",
34
- "@bananapus/permission-ids-v6": "^0.0.22",
32
+ "@bananapus/core-v6": "^0.0.54",
33
+ "@bananapus/ownable-v6": "^0.0.25",
34
+ "@bananapus/permission-ids-v6": "^0.0.25",
35
35
  "@openzeppelin/contracts": "5.6.1",
36
36
  "@prb/math": "4.1.1",
37
37
  "solady": "0.1.26"