Skip to content

Commit

Permalink
fix: small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Nov 7, 2024
1 parent 2857d82 commit bbb5b7c
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@
"dependencies"
],
"rebaseWhen": "conflicted",
"packageRules": [],
"packageRules": [
{
"groupName": "OpenZeppelin packages",
"matchPackagePatterns": ["^@openzeppelin/"]
}
],
"hostRules": [
{
"timeout": 3000000
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ jobs:
update-comment: true

- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4
uses: rlespinasse/github-slug-action@v5

- name: Package version
id: package-version
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:
with:
commit_message: "chore: update package versions [skip ci]"
branch: main
file_pattern: 'package.json README.md'
file_pattern: 'package.json README.md all_allocations.json'

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
7 changes: 6 additions & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": "solhint:recommended"
"extends": "solhint:recommended",
"rules": {
"immutable-vars-naming": "off",
"no-empty-blocks": "off",
"func-name-mixedcase": "off"
}
}
2 changes: 1 addition & 1 deletion lib/forge-std/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "forge-std",
"version": "1.9.3",
"version": "1.9.4",
"description": "Forge Standard Library is a collection of helpful contracts and libraries for use with Forge and Foundry.",
"homepage": "https://book.getfoundry.sh/forge/forge-std",
"bugs": "https://github.com/foundry-rs/forge-std/issues",
Expand Down
65 changes: 65 additions & 0 deletions lib/forge-std/src/Vm.sol

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/forge-std/test/Vm.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ contract VmTest is Test {
}

function test_VmSafeInterfaceId() public pure {
assertEq(type(VmSafe).interfaceId, bytes4(0xb09496a4), "VmSafe");
assertEq(type(VmSafe).interfaceId, bytes4(0x590bc2b4), "VmSafe");
}
}

0 comments on commit bbb5b7c

Please sign in to comment.