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

Commit

Permalink
Problem: auto-sync broken in 0.0.2 (#374)
Browse files Browse the repository at this point in the history
Solution: a hotfix in 0.0.3
(cherry picked from commit 8084678)
  • Loading branch information
tomtau committed Sep 12, 2019
1 parent d6b2d03 commit 8a2b521
Show file tree
Hide file tree
Showing 14 changed files with 73 additions and 64 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

*September 12, 2019*

A quick bug fix on top of 0.0.2

## v0.0.3

### Bug fixes
* [373](https://github.com/crypto-com/chain/pull/373) client-index auto-sync didn't work correctly

*September 11, 2019*

A small patches (mainly dependency bumps) to the released version
Expand Down
104 changes: 52 additions & 52 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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
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-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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
authors = ["Devashish Dixit <devashish@crypto.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-core"
version = "0.0.2"
version = "0.0.3"
authors = ["Devashish Dixit <devashish@crypto.com>"]
description = "This crate exposes following functionalities for interacting with Crypto.com Chain."
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion client-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client-index"
version = "0.0.2"
version = "0.0.3"
authors = ["Devashish Dixit <devashish@crypto.com>"]
edition = "2018"

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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
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.0.2"
version = "0.0.3"
authors = ["Crypto.com <chain@crypto.com>"]
description = "Requests and responses exchanges over ZMQ between chain-abci app "
readme = "../README.md"
Expand Down

0 comments on commit 8a2b521

Please sign in to comment.