Skip to content
Open
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
1 change: 1 addition & 0 deletions src/dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Dapp can correctly parse replay strings from invariant tests
- Libraries are properly linked when compiling with solc >= 0.7
- `dapp --use` will now find solc versions that have been installed systemwide on nixos

## [0.34.1] - 2021-09-08

Expand Down
2 changes: 1 addition & 1 deletion src/dapp/libexec/dapp/dapp---use
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function usage() {
[[ "$#" -gt 0 ]] || usage

query() {
nix-env -q --installed --out-path --no-name "$1" 2>/dev/null
nix-store -q --requisites /run/current-system ~/.nix-profile | grep "$1" --color=never 2>/dev/null
}

shopt -s extglob
Expand Down
1 change: 1 addition & 0 deletions src/seth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

Contract creations with Dynamic fee transactions.
- `seth --use` will now find solc versions that have been installed systemwide on nixos


### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/seth/libexec/seth/seth---use
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function usage() {
[[ "$#" -gt 0 ]] || usage

query() {
nix-env -q --installed --out-path --no-name "$1" 2>/dev/null
nix-store -q --requisites /run/current-system ~/.nix-profile | grep "$1" --color=never 2>/dev/null
}

shopt -s extglob
Expand Down