Skip to content

Commit

Permalink
Merge pull request #143 from ElrondNetwork/build-options
Browse files Browse the repository at this point in the history
Fix build arguments for report creator.
  • Loading branch information
andreibancioiu committed May 20, 2022
2 parents 82162ff + c10a473 commit 50ee431
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions erdpy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [Unreleased]
- TBD

## [1.5.2]
- [Fix build arguments for report creator](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/143)

## [1.5.1]
- [Pass contract build options to report creator](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/142)

Expand Down
2 changes: 1 addition & 1 deletion erdpy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.1"
__version__ = "1.5.2"
2 changes: 1 addition & 1 deletion erdpy/projects/project_rust.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def build_wasm_with_debug_symbols(self, build_options: Dict[str, Any]):
"--wasm-symbols",
"--wasm-suffix", "dbg",
"--no-wasm-opt",
"--cargo-target-dir", target_dir
"--target-dir", target_dir
]

return_code = myprocess.run_process_async(args, env=env, cwd=str(cwd))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.md", "r") as fh:
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"

VERSION = "1.5.1"
VERSION = "1.5.2"

try:
with open('./erdpy/_version.py', 'wt') as versionfile:
Expand Down

0 comments on commit 50ee431

Please sign in to comment.