File tree Expand file tree Collapse file tree 3 files changed +52
-7
lines changed Expand file tree Collapse file tree 3 files changed +52
-7
lines changed Original file line number Diff line number Diff line change 1
1
# [ 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
+
2
21
## [ 0.0.30] - 2019-09-20
3
22
### Fixed
4
23
- [ DOWNLOADER] blockchain/downloader: if there were two different blocks in same height, it may cause download error (#481 )(#490 )
266
285
- [ MAKEFILE] add check fmt tag_release release command
267
286
268
287
288
+ [ 1.0.0 ] : https://github.com/fractalplatform/fractal/compare/v0.0.30...v1.0.0
269
289
[ 0.0.30 ] : https://github.com/fractalplatform/fractal/compare/v0.0.29...v0.0.30
270
290
[ 0.0.29 ] : https://github.com/fractalplatform/fractal/compare/v0.0.28...v0.0.29
271
291
[ 0.0.28 ] : https://github.com/fractalplatform/fractal/compare/v0.0.27...v0.0.28
Original file line number Diff line number Diff line change
1
+ ### Forked
2
+ - [ DPOS] allow contract asset transfer (#525 )(#528 )
3
+ - [ FEE] other people pay transaction fee (#531 )(#533 )(#536 )
1
4
### 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 )
7
11
### 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 )
10
17
Original file line number Diff line number Diff line change @@ -43,6 +43,24 @@ import "github.com/monax/relic"
43
43
// release tagging script: ./scripts/tag_release.sh
44
44
var History relic.ImmutableHistory = relic .NewHistory ("fractal" , "https://github.com/fractalplatform/fractal" ).
45
45
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
+ ` ,
46
64
"0.0.30 - 2019-09-20" ,
47
65
`### Fixed
48
66
- [DOWNLOADER] blockchain/downloader: if there were two different blocks in same height, it may cause download error (#481)(#490)
You can’t perform that action at this time.
0 commit comments