Skip to content
This repository was archived by the owner on Jul 27, 2022. It is now read-only.

Commit af065c6

Browse files
committed
Problem: 0.3.1 not reflected in changelog
Solution: wrote the cherry-picked changes + bumped the version
1 parent 6731ac5 commit af065c6

File tree

18 files changed

+44
-34
lines changed

18 files changed

+44
-34
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,19 @@
22

33
*Unreleased*
44

5-
## v0.?.?
5+
## v0.4.0
66
...
77

8+
## v0.3.1
9+
10+
*February 24, 2020*
11+
12+
This release contains a hotfix for two client issues in the 0.3.0 release (the binaries for chain-abci, enclaves, and dev-utils remain the same).
13+
14+
### Bug Fixes
15+
* *client* [1117](https://github.com/crypto-com/chain/pull/1117): lightweight verification may fail with blocks with multiple transactions due to a different order of txids in btreemap
16+
* *client* [1118](https://github.com/crypto-com/chain/pull/1118): incorrect fee estimation
17+
818
*February 16, 2020*
919

1020
This release fixes some of the main issues discovered during the testnet 0.2 operation and implements

Cargo.lock

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chain-abci/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chain-abci"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Pre-alpha version prototype of Crypto.com Chain node (Tendermint ABCI application)"
66
readme = "README.md"

chain-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chain-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Library with core types and serialization for the use in external tools"
66
readme = "../README.md"

chain-storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chain-storage"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Storage of Crypto.com Chain node (Merkle trie, transaction metadata etc.)"
66
readme = "README.md"

chain-tx-enclave/tx-query/app/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tx-query-app"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Application server wrapper around the transaction query enclave (optional)."
66
readme = "../../README.md"

chain-tx-enclave/tx-query/enclave/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tx-query-enclave"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "The transaction query enclave."
66
readme = "../../README.md"

chain-tx-enclave/tx-validation/enclave/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tx-validation-enclave"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "The transaction validation enclave."
66
readme = "../../README.md"

chain-tx-filter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chain-tx-filter"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Library that captures the fuctionality related to block-level public view key-based transaction filtering."
66
readme = "../README.md"

chain-tx-validation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chain-tx-validation"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Library with functions that verify, given current chain state's data, if a transaction is valid."
66
readme = "../README.md"

client-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client-cli"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Devashish Dixit <devashish@crypto.com>"]
55
edition = "2018"
66

client-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client-common"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Devashish Dixit <devashish@crypto.com>"]
55
edition = "2018"
66

client-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Devashish Dixit <devashish@crypto.com>"]
55
description = "This crate exposes following functionalities for interacting with Crypto.com Chain."
66
edition = "2018"
@@ -23,7 +23,7 @@ itertools = "0.8"
2323
base64 = "0.11"
2424
webpki = "0.21"
2525
rustls = {version = "0.16", features = ["dangerous_configuration"]}
26-
yasna = { version = "0.3.0", features = ["bit-vec", "num-bigint", "chrono"] }
26+
yasna = { version = "0.3.1", features = ["bit-vec", "num-bigint", "chrono"] }
2727
bit-vec = "0.6.1"
2828
num-bigint = "0.2.5"
2929
serde_json = "1.0.48"

client-network/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client-network"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Devashish Dixit <devashish@crypto.com>"]
55
edition = "2018"
66

client-rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client-rpc"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Calvin Lau <calvin@crypto.com>"]
55
edition = "2018"
66

dev-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dev-utils"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Basic CLI for development purposes (e.g. generation of genesis.json parameters)"
66
edition = "2018"

enclave-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "enclave-protocol"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Crypto.com <chain@crypto.com>"]
55
description = "Requests and responses exchanges over ZMQ between chain-abci app "
66
readme = "../README.md"

test-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-common"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["yihuang <yi.codeplayer@gmail.com>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)