@bananapus/permission-ids-v6 0.0.12 → 0.0.14

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.
@@ -18,12 +18,12 @@ From `foundry.toml`:
18
18
 
19
19
  | Setting | Value |
20
20
  |---------|-------|
21
- | Solidity version | `^0.8.26` |
21
+ | Solidity version | `0.8.28` |
22
22
  | EVM target | `cancun` |
23
23
  | Optimizer | Enabled, 200 runs |
24
- | Pragma in source | `^0.8.0` (flexible, compiled with ^0.8.26) |
24
+ | Pragma in source | `^0.8.0` (flexible, compiled with 0.8.28) |
25
25
 
26
- Note: The library pragma is `^0.8.0` rather than a fixed version, since consuming contracts may compile it with their own Solidity version. The `foundry.toml` pins `^0.8.26` for local builds.
26
+ Note: The library pragma is `^0.8.0` rather than a fixed version, since consuming contracts may compile it with their own Solidity version. The `foundry.toml` pins `0.8.28` for local builds.
27
27
 
28
28
  ## Previous Audit Findings
29
29
 
package/STYLE_GUIDE.md CHANGED
@@ -21,7 +21,7 @@ One contract/interface/struct/enum per file. Name the file after the type it con
21
21
 
22
22
  ```solidity
23
23
  // Contracts — pin to exact version
24
- pragma solidity ^0.8.26;
24
+ pragma solidity 0.8.28;
25
25
 
26
26
  // Interfaces, structs, enums — caret for forward compatibility
27
27
  pragma solidity ^0.8.0;
@@ -313,7 +313,7 @@ Standard config across all repos:
313
313
 
314
314
  ```toml
315
315
  [profile.default]
316
- solc = '0.8.26'
316
+ solc = '0.8.28'
317
317
  evm_version = 'cancun'
318
318
  optimizer_runs = 200
319
319
  libs = ["node_modules", "lib"]
package/foundry.toml CHANGED
@@ -1,5 +1,5 @@
1
1
  [profile.default]
2
- solc = '0.8.26'
2
+ solc = '0.8.28'
3
3
  evm_version = 'cancun'
4
4
  optimizer_runs = 200
5
5
  libs = ["node_modules", "lib"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bananapus/permission-ids-v6",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",