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

Commit

Permalink
Problem: 0.3.1 not reflected in changelog
Browse files Browse the repository at this point in the history
Solution: wrote the cherry-picked changes + bumped the version
  • Loading branch information
tomtau committed Feb 24, 2020
1 parent 6731ac5 commit af065c6
Show file tree
Hide file tree
Showing 18 changed files with 44 additions and 34 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@

*Unreleased*

## v0.?.?
## v0.4.0
...

## v0.3.1

*February 24, 2020*

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).

### Bug Fixes
* *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
* *client* [1118](https://github.com/crypto-com/chain/pull/1118): incorrect fee estimation

*February 16, 2020*

This release fixes some of the main issues discovered during the testnet 0.2 operation and implements
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion chain-abci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chain-abci"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Pre-alpha version prototype of Crypto.com Chain node (Tendermint ABCI application)"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chain-core"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Library with core types and serialization for the use in external tools"
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chain-storage"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Storage of Crypto.com Chain node (Merkle trie, transaction metadata etc.)"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave/tx-query/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx-query-app"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Application server wrapper around the transaction query enclave (optional)."
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave/tx-query/enclave/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx-query-enclave"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "The transaction query enclave."
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-enclave/tx-validation/enclave/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx-validation-enclave"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "The transaction validation enclave."
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-filter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chain-tx-filter"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Library that captures the fuctionality related to block-level public view key-based transaction filtering."
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion chain-tx-validation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chain-tx-validation"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Library with functions that verify, given current chain state's data, if a transaction is valid."
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion client-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-cli"
version = "0.3.0"
version = "0.3.1"
authors = ["Devashish Dixit <devashish@crypto.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-common"
version = "0.3.0"
version = "0.3.1"
authors = ["Devashish Dixit <devashish@crypto.com>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions client-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-core"
version = "0.3.0"
version = "0.3.1"
authors = ["Devashish Dixit <devashish@crypto.com>"]
description = "This crate exposes following functionalities for interacting with Crypto.com Chain."
edition = "2018"
Expand All @@ -23,7 +23,7 @@ itertools = "0.8"
base64 = "0.11"
webpki = "0.21"
rustls = {version = "0.16", features = ["dangerous_configuration"]}
yasna = { version = "0.3.0", features = ["bit-vec", "num-bigint", "chrono"] }
yasna = { version = "0.3.1", features = ["bit-vec", "num-bigint", "chrono"] }
bit-vec = "0.6.1"
num-bigint = "0.2.5"
serde_json = "1.0.48"
Expand Down
2 changes: 1 addition & 1 deletion client-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-network"
version = "0.3.0"
version = "0.3.1"
authors = ["Devashish Dixit <devashish@crypto.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-rpc"
version = "0.3.0"
version = "0.3.1"
authors = ["Calvin Lau <calvin@crypto.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion dev-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dev-utils"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Basic CLI for development purposes (e.g. generation of genesis.json parameters)"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion enclave-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enclave-protocol"
version = "0.3.0"
version = "0.3.1"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Requests and responses exchanges over ZMQ between chain-abci app "
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion test-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-common"
version = "0.3.0"
version = "0.3.1"
authors = ["yihuang <yi.codeplayer@gmail.com>"]
edition = "2018"

Expand Down

0 comments on commit af065c6

Please sign in to comment.