diff --git a/CHANGELOG/CHANGELOG-0.2.md b/CHANGELOG/CHANGELOG-0.2.md index 06b98582d..d968e0895 100644 --- a/CHANGELOG/CHANGELOG-0.2.md +++ b/CHANGELOG/CHANGELOG-0.2.md @@ -1,4 +1,20 @@ -# [](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.1...v) (2020-08-04) +# [](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.2...v) (2020-08-07) + + +### Bug Fixes + +* **apm:** Return the correct time ([#400](https://github.com/nervosnetwork/muta/issues/400)) ([fd6549a](https://github.com/nervosnetwork/muta/commit/fd6549a6352633cee7b5b747448129df7a0532ca)) + + +### Features + +* **network:** limit connections from same ip ([#388](https://github.com/nervosnetwork/muta/issues/388)) ([dc78c13](https://github.com/nervosnetwork/muta/commit/dc78c13b8aa25f3e4535e588149042f6345e4d25)) +* **network:** limit inbound and outbound connections ([#393](https://github.com/nervosnetwork/muta/issues/393)) ([3a3111e](https://github.com/nervosnetwork/muta/commit/3a3111e1e332529bc8636c54526920c292c04f8a)) +* **sync:** Limit the maximum height of once sync ([#390](https://github.com/nervosnetwork/muta/issues/390)) ([f951a95](https://github.com/nervosnetwork/muta/commit/f951a953daf307ffc98b4df0fe1a77a6a810ac71)) + + + +# [0.2.0-beta.2](https://github.com/nervosnetwork/muta/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2020-08-04) ### Bug Fixes @@ -16,9 +32,7 @@ * **metrics:** Add metrics of state ([#397](https://github.com/nervosnetwork/muta/issues/397)) ([5822764](https://github.com/nervosnetwork/muta/commit/5822764240f8b4e8cfeca4bccf7d399a0bf71897)) -### BREAKING CHANGE -* **MultiSig:** change interface and substitute adaptive_address for autonomy ([#384](https://github.com/nervosnetwork/muta/pull/384)) ([a58831e](https://github.com/nervosnetwork/muta/commit/a58831ee029bf27ba79ed08bf0ece7f511abd899)) # [0.2.0-beta.1](https://github.com/nervosnetwork/muta/compare/v0.2.0-alpha.1...v0.2.0-beta.1) (2020-08-03) diff --git a/CHANGELOG/README.md b/CHANGELOG/README.md index 9233ef073..ec2a84cd5 100644 --- a/CHANGELOG/README.md +++ b/CHANGELOG/README.md @@ -1,5 +1,6 @@ # CHANGELOGs > use: conventional-changelog +> > example command: conventional-changelog -p angular -i CHANGELOG-0.2.md -s -r 0.2 - [CHANGELOG-0.1.md](./CHANGELOG-0.1.md) diff --git a/Cargo.toml b/Cargo.toml index f7fe7be2d..c2aed5c47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/binding-macro/Cargo.toml b/binding-macro/Cargo.toml index aaad6de7e..4cc17aade 100644 --- a/binding-macro/Cargo.toml +++ b/binding-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binding-macro" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" 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 cc33aa217..cd39aaaa4 100644 --- a/built-in-services/asset/Cargo.toml +++ b/built-in-services/asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asset" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" 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 cfdb7bac9..be9189ecc 100644 --- a/built-in-services/metadata/Cargo.toml +++ b/built-in-services/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metadata" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" 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 7c1359627..18cca8acf 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.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" @@ -26,4 +26,4 @@ serde_json = "1.0" [dev-dependencies] async-trait = "0.1" cita_trie = "2.0" -framework = { path = "../../framework" } \ No newline at end of file +framework = { path = "../../framework" } diff --git a/built-in-services/util/Cargo.toml b/built-in-services/util/Cargo.toml index d8d8e3810..c5f766bd5 100644 --- a/built-in-services/util/Cargo.toml +++ b/built-in-services/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "util" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/channel/Cargo.toml b/common/channel/Cargo.toml index b0e694cb2..cf63f60bb 100644 --- a/common/channel/Cargo.toml +++ b/common/channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-channel" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" 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 8ca6287b0..22ec26a65 100644 --- a/common/config-parser/Cargo.toml +++ b/common/config-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-config-parser" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/crypto/Cargo.toml b/common/crypto/Cargo.toml index f865fc83a..bfd87d812 100644 --- a/common/crypto/Cargo.toml +++ b/common/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-crypto" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/logger/Cargo.toml b/common/logger/Cargo.toml index bec8d903a..5a1835bb4 100644 --- a/common/logger/Cargo.toml +++ b/common/logger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-logger" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/merkle/Cargo.toml b/common/merkle/Cargo.toml index 928194011..21d714744 100644 --- a/common/merkle/Cargo.toml +++ b/common/merkle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-merkle" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/common/pubsub/Cargo.toml b/common/pubsub/Cargo.toml index b1e4af1f1..d7fdba42a 100644 --- a/common/pubsub/Cargo.toml +++ b/common/pubsub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common-pubsub" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/api/Cargo.toml b/core/api/Cargo.toml index 34c7fbd22..48717e56c 100644 --- a/core/api/Cargo.toml +++ b/core/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-api" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/consensus/Cargo.toml b/core/consensus/Cargo.toml index 1a2fcaf29..693a004f1 100644 --- a/core/consensus/Cargo.toml +++ b/core/consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-consensus" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/mempool/Cargo.toml b/core/mempool/Cargo.toml index b213d4cb3..ea6671b31 100644 --- a/core/mempool/Cargo.toml +++ b/core/mempool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-mempool" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/network/Cargo.toml b/core/network/Cargo.toml index 334e70e31..717a84ca1 100644 --- a/core/network/Cargo.toml +++ b/core/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-network" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/core/storage/Cargo.toml b/core/storage/Cargo.toml index 3c0dc1a12..7a0d913dc 100644 --- a/core/storage/Cargo.toml +++ b/core/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-storage" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/devtools/keypair/Cargo.toml b/devtools/keypair/Cargo.toml index 764ebcebc..6a811ca67 100644 --- a/devtools/keypair/Cargo.toml +++ b/devtools/keypair/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta-keypair" -version = "0.1.0-alpha.1" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" include = ["Cargo.toml", "src/*"] diff --git a/framework/Cargo.toml b/framework/Cargo.toml index 516cb55be..6674bfc38 100644 --- a/framework/Cargo.toml +++ b/framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework" -version = "0.1.0-alpha.0" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 5812b09db..57c933f2d 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muta-protocol" -version = "0.1.0-alpha.1" +version = "0.2.0-beta3" authors = ["Muta Dev "] edition = "2018" repository = "https://github.com/nervosnetwork/muta"