From 3c427f948028f037636ed6b1bb2632d35ca882d3 Mon Sep 17 00:00:00 2001 From: erickYan86 Date: Tue, 23 Apr 2019 11:55:33 +0800 Subject: [PATCH] update history --- CHANGELOG.md | 14 ++++++++++++++ NOTES.md | 10 ++++++++-- cmd/utils/history.go | 12 ++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f66d894..6d46b200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ # [fractal](https://github.com/fractalplatform/fractal) Changelog +## [0.0.7] - 2019-04-23 +### Removed +- [WALLET] removed wallet module,the local node not support store private key +### Added +- [VM] add opt for opSnapBalance and destroyasset for contract +- [BLOCKCHAIN] support import/export block +- [RPC] add get the contract internal transaction +### Fixed +- [VM] add opt for opSnapBalance +- [TYPES] fixs the base types +- [ALL] fixs some bugs + + ## [0.0.6] - 2019-04-04 ### Added - [CRYPTO] add btcd secp256k1 crypto @@ -14,5 +27,6 @@ - [MAKEFILE] add check fmt tag_release release command +[0.0.7]: https://github.com/fractalplatform/fractal/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/fractalplatform/fractal/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/fractalplatform/fractal/commits/v0.0.5 diff --git a/NOTES.md b/NOTES.md index a9be9a61..0acefde5 100644 --- a/NOTES.md +++ b/NOTES.md @@ -1,5 +1,11 @@ +### Removed +- [WALLET] removed wallet module,the local node not support store private key ### Added -- [CRYPTO] add btcd secp256k1 crypto +- [VM] add opt for opSnapBalance and destroyasset for contract +- [BLOCKCHAIN] support import/export block +- [RPC] add get the contract internal transaction ### Fixed -- [MAKEFILE] fixed cross platform +- [VM] add opt for opSnapBalance +- [TYPES] fixs the base types +- [ALL] fixs some bugs diff --git a/cmd/utils/history.go b/cmd/utils/history.go index 95cc82ef..9de94dac 100644 --- a/cmd/utils/history.go +++ b/cmd/utils/history.go @@ -41,6 +41,18 @@ import "github.com/monax/relic" // release tagging script: ./scripts/tag_release.sh var History relic.ImmutableHistory = relic.NewHistory("fractal", "https://github.com/fractalplatform/fractal"). MustDeclareReleases( + "0.0.7 - 2019-04-23", + `### Removed +- [WALLET] removed wallet module,the local node not support store private key +### Added +- [VM] add opt for opSnapBalance and destroyasset for contract +- [BLOCKCHAIN] support import/export block +- [RPC] add get the contract internal transaction +### Fixed +- [VM] add opt for opSnapBalance +- [TYPES] fixs the base types +- [ALL] fixs some bugs +`, "0.0.6 - 2019-04-04", `### Added - [CRYPTO] add btcd secp256k1 crypto