Skip to content

Commit 102fe05

Browse files
committed
update version 1.0.0
1 parent 2351651 commit 102fe05

File tree

3 files changed

+52
-7
lines changed

3 files changed

+52
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
# [fractal](https://github.com/fractalplatform/fractal) Changelog
2+
## [1.0.0] - 2019-12-09
3+
### Forked
4+
- [DPOS] allow contract asset transfer (#525)(#528)
5+
- [FEE] other people pay transaction fee (#531)(#533)(#536)
6+
### Fixed
7+
- [FEE]fee transfer internal record (#495)
8+
- [BLOCKCHIAN] fixed export blockchain error (#498)
9+
- [GAS] modify gas price (#501)
10+
- [MINER] add setcoinbase check (#500) and fix miner bug (#499)(#511)(#512)(#513)(#514)(#516)
11+
- [P2P] fixed bug that may close a nil channel (#503)and fixed ddos check error (#519)
12+
- [DOWNLOAD]add node into blacklist if it had too much errors(#519)(#523)
13+
### Added
14+
- [CMD] add version cmd compile date info (#505)(#521)
15+
- [CMD] cmd/ft: add method 'seednodes' into sub-cmd 'p2p' (#497)
16+
- [CMD] add txpool cmd gettxsbyaccount (#502)
17+
- [P2P] p2p,rpc: add rpc to query seed nodes from db(#496)
18+
- [TEST] add each code module unit test or note (#492)(#493)(#504)(#508)(#507)(#509)
19+
20+
221
## [0.0.30] - 2019-09-20
322
### Fixed
423
- [DOWNLOADER] blockchain/downloader: if there were two different blocks in same height, it may cause download error (#481)(#490)
@@ -266,6 +285,7 @@
266285
- [MAKEFILE] add check fmt tag_release release command
267286

268287

288+
[1.0.0]: https://github.com/fractalplatform/fractal/compare/v0.0.30...v1.0.0
269289
[0.0.30]: https://github.com/fractalplatform/fractal/compare/v0.0.29...v0.0.30
270290
[0.0.29]: https://github.com/fractalplatform/fractal/compare/v0.0.28...v0.0.29
271291
[0.0.28]: https://github.com/fractalplatform/fractal/compare/v0.0.27...v0.0.28

NOTES.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
### Forked
2+
- [DPOS] allow contract asset transfer (#525)(#528)
3+
- [FEE] other people pay transaction fee (#531)(#533)(#536)
14
### Fixed
2-
- [DOWNLOADER] blockchain/downloader: if there were two different blocks in same height, it may cause download error (#481)(#490)
3-
- [BLOCKCHAIN] blockchain: fixed bug that use nanosecond compared with second (#474)
4-
### Changed
5-
- [RAWDB] modify fractal db interface (#487)
6-
- [BLOCKCHAIN] modify the blockchain code (#489)
5+
- [FEE]fee transfer internal record (#495)
6+
- [BLOCKCHIAN] fixed export blockchain error (#498)
7+
- [GAS] modify gas price (#501)
8+
- [MINER] add setcoinbase check (#500) and fix miner bug (#499)(#511)(#512)(#513)(#514)(#516)
9+
- [P2P] fixed bug that may close a nil channel (#503)and fixed ddos check error (#519)
10+
- [DOWNLOAD]add node into blacklist if it had too much errors(#519)(#523)
711
### Added
8-
- [GASPRICE] returns the recommended gas price (#486)
9-
- [TEST] add each code module unit test or note (#471)(#472)(#473)(#475)(#476)(#478)(#482)(#483)(#485)
12+
- [CMD] add version cmd compile date info (#505)(#521)
13+
- [CMD] cmd/ft: add method 'seednodes' into sub-cmd 'p2p' (#497)
14+
- [CMD] add txpool cmd gettxsbyaccount (#502)
15+
- [P2P] p2p,rpc: add rpc to query seed nodes from db(#496)
16+
- [TEST] add each code module unit test or note (#492)(#493)(#504)(#508)(#507)(#509)
1017

cmd/utils/history.go

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,24 @@ import "github.com/monax/relic"
4343
// release tagging script: ./scripts/tag_release.sh
4444
var History relic.ImmutableHistory = relic.NewHistory("fractal", "https://github.com/fractalplatform/fractal").
4545
MustDeclareReleases(
46+
"1.0.0 - 2019-12-09",
47+
`### Forked
48+
- [DPOS] allow contract asset transfer (#525)(#528)
49+
- [FEE] other people pay transaction fee (#531)(#533)(#536)
50+
### Fixed
51+
- [FEE]fee transfer internal record (#495)
52+
- [BLOCKCHIAN] fixed export blockchain error (#498)
53+
- [GAS] modify gas price (#501)
54+
- [MINER] add setcoinbase check (#500) and fix miner bug (#499)(#511)(#512)(#513)(#514)(#516)
55+
- [P2P] fixed bug that may close a nil channel (#503)and fixed ddos check error (#519)
56+
- [DOWNLOAD]add node into blacklist if it had too much errors(#519)(#523)
57+
### Added
58+
- [CMD] add version cmd compile date info (#505)(#521)
59+
- [CMD] cmd/ft: add method 'seednodes' into sub-cmd 'p2p' (#497)
60+
- [CMD] add txpool cmd gettxsbyaccount (#502)
61+
- [P2P] p2p,rpc: add rpc to query seed nodes from db(#496)
62+
- [TEST] add each code module unit test or note (#492)(#493)(#504)(#508)(#507)(#509)
63+
`,
4664
"0.0.30 - 2019-09-20",
4765
`### Fixed
4866
- [DOWNLOADER] blockchain/downloader: if there were two different blocks in same height, it may cause download error (#481)(#490)

0 commit comments

Comments
 (0)