diff --git a/CHANGELOG/CHANGELOG-0.2.md b/CHANGELOG/CHANGELOG-0.2.md index d968e0895..6f629e096 100644 --- a/CHANGELOG/CHANGELOG-0.2.md +++ b/CHANGELOG/CHANGELOG-0.2.md @@ -1,4 +1,24 @@ -# [](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.2...v) (2020-08-07) +# [](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.3...v) (2020-08-10) + + +### Bug Fixes + +* load hrp before deserializing genesis payload to take hrp effect ([#405](https://github.com/nervosnetwork/muta/issues/405)) ([828e6d5](https://github.com/nervosnetwork/muta/commit/828e6d539cf4da9cf042c450418e75a944315014)) + +* service field of event is not binded to ctx.service ([#405](https://github.com/nervosnetwork/muta/issues/408)) ([120f1ee](https://github.com/nervosnetwork/muta/commit/120f1ee125593d7def075460f34fc3dcd5a8fe83)) + +### Features + +* **api:** Support enabled TLS ([#402](https://github.com/nervosnetwork/muta/issues/402)) ([c2908a3](https://github.com/nervosnetwork/muta/commit/c2908a3ba6a5ab1219ddc9b14ff6d7320cf70228)) + + +### Performance Improvements + +* **state:** add state cache for trieDB ([#404](https://github.com/nervosnetwork/muta/issues/404)) ([2a08c14](https://github.com/nervosnetwork/muta/commit/2a08c147571707507b72882788fd51f7a799f3ec)) + + + +# [0.2.0-beta.3](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2020-08-07) ### Bug Fixes @@ -112,3 +132,4 @@ Block proposer is address instead public key Block proposer is address instead public key * fix: compilation failed + diff --git a/Cargo.toml b/Cargo.toml index c2aed5c47..c6f7bc7f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/binding-macro/Cargo.toml b/binding-macro/Cargo.toml index 4cc17aade..59b3ddb13 100644 --- a/binding-macro/Cargo.toml +++ b/binding-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binding-macro" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/built-in-services/asset/Cargo.toml b/built-in-services/asset/Cargo.toml index cd39aaaa4..3b34cc486 100644 --- a/built-in-services/asset/Cargo.toml +++ b/built-in-services/asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asset" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/built-in-services/metadata/Cargo.toml b/built-in-services/metadata/Cargo.toml index be9189ecc..ebe811510 100644 --- a/built-in-services/metadata/Cargo.toml +++ b/built-in-services/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metadata" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/built-in-services/multi-signature/Cargo.toml b/built-in-services/multi-signature/Cargo.toml index 18cca8acf..8ae289fd6 100644 --- a/built-in-services/multi-signature/Cargo.toml +++ b/built-in-services/multi-signature/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multi-signature" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/built-in-services/util/Cargo.toml b/built-in-services/util/Cargo.toml index c5f766bd5..71cf2a12d 100644 --- a/built-in-services/util/Cargo.toml +++ b/built-in-services/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "util" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/channel/Cargo.toml b/common/channel/Cargo.toml index cf63f60bb..b9b921b9d 100644 --- a/common/channel/Cargo.toml +++ b/common/channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-channel" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/config-parser/Cargo.toml b/common/config-parser/Cargo.toml index 22ec26a65..505dee2d8 100644 --- a/common/config-parser/Cargo.toml +++ b/common/config-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-config-parser" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/crypto/Cargo.toml b/common/crypto/Cargo.toml index bfd87d812..7322a1446 100644 --- a/common/crypto/Cargo.toml +++ b/common/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-crypto" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/logger/Cargo.toml b/common/logger/Cargo.toml index 5a1835bb4..69eb0aeb0 100644 --- a/common/logger/Cargo.toml +++ b/common/logger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-logger" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/merkle/Cargo.toml b/common/merkle/Cargo.toml index 21d714744..a18290363 100644 --- a/common/merkle/Cargo.toml +++ b/common/merkle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-merkle" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/pubsub/Cargo.toml b/common/pubsub/Cargo.toml index d7fdba42a..b652c2ac7 100644 --- a/common/pubsub/Cargo.toml +++ b/common/pubsub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-pubsub" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/api/Cargo.toml b/core/api/Cargo.toml index 5ee8bb584..631610352 100644 --- a/core/api/Cargo.toml +++ b/core/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-api" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/consensus/Cargo.toml b/core/consensus/Cargo.toml index 693a004f1..2c4713f39 100644 --- a/core/consensus/Cargo.toml +++ b/core/consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-consensus" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/mempool/Cargo.toml b/core/mempool/Cargo.toml index ea6671b31..afe17124b 100644 --- a/core/mempool/Cargo.toml +++ b/core/mempool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-mempool" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/network/Cargo.toml b/core/network/Cargo.toml index 717a84ca1..1806560e8 100644 --- a/core/network/Cargo.toml +++ b/core/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-network" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/storage/Cargo.toml b/core/storage/Cargo.toml index 7a0d913dc..cec3e07ce 100644 --- a/core/storage/Cargo.toml +++ b/core/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-storage" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/devtools/keypair/Cargo.toml b/devtools/keypair/Cargo.toml index 6a811ca67..3f52baf95 100644 --- a/devtools/keypair/Cargo.toml +++ b/devtools/keypair/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta-keypair" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" include = ["Cargo.toml", "src/*"] diff --git a/framework/Cargo.toml b/framework/Cargo.toml index f0836c78c..6cd111eb6 100644 --- a/framework/Cargo.toml +++ b/framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 57c933f2d..c236fdf45 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta-protocol" -version = "0.2.0-beta3" +version = "0.2.0-beta.4" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta"