Skip to content

Commit

Permalink
release: dapp/0.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
d-xo committed Feb 2, 2021
1 parent 60df33f commit bbc2b48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.32.1] - 2021-02-02

### Fixed

- `dapp init` to new architecture
- `dapp verify-contract` to new architecture
- `dapp init` works with the new standard-json architecture
- `dapp verify-contract` works with the new standard-json architecture

## [0.32.0] - 2021-01-26

### Changed

- `dapp build`, `dapp test`, `dapp --make-library-state`, `dapp create` now use solidity output
- `dapp build`, `dapp test`, `dapp --make-library-state`, `dapp create` now use solidity output
generated via `--standard-json` instead of `--combined-json`. Building via the old format is
still possible via `dapp build --legacy`, but is considered deprecated and will be removed in
future releases.
Expand All @@ -36,7 +36,7 @@ The settings can be tweaked using the following environment variables:

### Removed

- `SOLC_FLAGS`. To modify the compiler settings, use a custom standard json and set
- `SOLC_FLAGS`. To modify the compiler settings, use a custom standard json and set
the filename as argument to `DAPP_STANDARD_JSON`.

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/dapp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

stdenv.mkDerivation rec {
name = "dapp-${version}";
version = "0.31.1";
version = "0.32.1";
src = ./.;

nativeBuildInputs = [makeWrapper shellcheck coreutils nodejs python3];
Expand Down
2 changes: 1 addition & 1 deletion src/dapp/libexec/dapp/dapp---version
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
echo dapp 0.32.0
echo dapp 0.32.1
# use a custom path is DAPP_SOLC is set
SOLC=${DAPP_SOLC:-solc}
$SOLC --version
Expand Down

0 comments on commit bbc2b48

Please sign in to comment.