Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Echidna 2.2.3 #1195

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 2.2.3

* feat: add CLI commands for RPC URL and block number (#1194)
* Speed up shrinking (#1192)
* Update hevm to 0.53.0 (#1189)
* Fix faulty corpus transaction detection (#1184)
* Display contract names in UI (#1181)
* Save traces for every transaction in reproducer (#1180)
* Validate corpus while replaying (#1177)
* Refactors (#1174, #1178)

## 2.2.2

* Save corpus and reproducers continuously (#1167)
Expand Down
12 changes: 9 additions & 3 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ name: echidna
author: Trail of Bits <[email protected]>
maintainer: Trail of Bits <[email protected]>

version: 2.2.2
version: 2.2.3

# https://github.com/haskell/cabal/issues/4739
ghc-options: -Wall -fno-warn-orphans -O2 -optP-Wno-nonportable-include-path
ghc-options:
- -O2
- -Wall
- -fno-warn-orphans
# https://github.com/haskell/cabal/issues/4739
- -optP-Wno-nonportable-include-path
- -fspecialize-aggressively
- -fexpose-all-unfoldings

dependencies:
- base
Expand Down
Loading