Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sergej Kostjucenko
cargo-contract
Commits
7bbc95ce
Unverified
Commit
7bbc95ce
authored
Aug 12, 2021
by
Michael Müller
Committed by
GitHub
Aug 12, 2021
Browse files
Release v0.14.0 (#327)
* Add log output * Add #326 to changelog * Bump version * Fix changelog
parent
259b716e
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
7bbc95ce
...
...
@@ -6,11 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.14.0] - 2021-08-12
### Added
-
Add option for JSON formatted output -
[
#324
](
https://github.com/paritytech/cargo-contract/pull/324
)
### Changed
-
Use new dependency resolver for template contract -
[
#325
](
https://github.com/paritytech/cargo-contract/pull/325
)
-
Do not strip out panic messages in debug builds -
[
#326
](
https://github.com/paritytech/cargo-contract/pull/326
)
## [0.13.1] - 2021-08-03
...
...
Cargo.lock
View file @
7bbc95ce
...
...
@@ -487,7 +487,7 @@ dependencies = [
[[package]]
name = "cargo-contract"
version = "0.1
3.1
"
version = "0.1
4.0
"
dependencies = [
"anyhow",
"assert_matches",
...
...
Cargo.toml
View file @
7bbc95ce
...
...
@@ -3,7 +3,7 @@ members = [".", "metadata"]
[package]
name
=
"cargo-contract"
version
=
"0.1
3.1
"
version
=
"0.1
4.0
"
authors
=
[
"Parity Technologies <admin@parity.io>"
]
build
=
"build.rs"
edition
=
"2018"
...
...
src/cmd/build.rs
View file @
7bbc95ce
...
...
@@ -471,6 +471,7 @@ fn do_optimization(
if
keep_debug_symbols
{
command
.arg
(
"-g"
);
}
log
::
info!
(
"Invoking wasm-opt with {:?}"
,
command
);
let
output
=
command
.output
()
.map_err
(|
err
|
{
anyhow
::
anyhow!
(
"Executing {} failed with {:?}"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment