Skip to content

Commit

Permalink
update version v0.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
erickyan86 committed Aug 14, 2019
1 parent 0be75df commit cef965e
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
# [fractal](https://github.com/fractalplatform/fractal) Changelog
## [0.0.25] - 2019-08-07
### Forked
- [DPOS] fork3: reduce CandidateAvailableMinQuantity (#416)
### Fixed
- [MINER] fixed some bugs (#421)(#422)
- [TXPOOL] fixed txpool add remotes not check the same tx was exist (#423)
- [TXPOOL] fixed txpool rpc send same tx err (#430)
- [ACCOUNT] fix internal action bug (#424)
### Changed
- [RPCAPI] modify api get account by name and id (#428)
- [GASPRICE] modify gas price oracle (#417)
- [ACCOUNT] modify account fliter balance zero (#414)
### Added
- [FILTERS] add filters rpc (#431)
- [MOD] support go mod (#429)
- [VM] add timeout func (#419) and add callwithpay (#425)


## [0.0.24] - 2019-07-30
### Fixed
- [BLOCKCHAIN] blockchain store irreversible number
Expand Down Expand Up @@ -203,6 +221,7 @@
- [MAKEFILE] add check fmt tag_release release command


[0.0.25]: https://github.com/fractalplatform/fractal/compare/v0.0.24...v0.0.25
[0.0.24]: https://github.com/fractalplatform/fractal/compare/v0.0.23...v0.0.24
[0.0.23]: https://github.com/fractalplatform/fractal/compare/v0.0.22...v0.0.23
[0.0.22]: https://github.com/fractalplatform/fractal/compare/v0.0.21...v0.0.22
Expand Down
17 changes: 12 additions & 5 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
### Forked
- [DPOS] fork3: reduce CandidateAvailableMinQuantity (#416)
### Fixed
- [BLOCKCHAIN] blockchain store irreversible number
- [TXPOOL] fixed txpool test failed in travis CI
- [MINER] fixed some bugs (#421)(#422)
- [TXPOOL] fixed txpool add remotes not check the same tx was exist (#423)
- [TXPOOL] fixed txpool rpc send same tx err (#430)
- [ACCOUNT] fix internal action bug (#424)
### Changed
- [DPOS] update some dpos apis
- [RPCAPI] modify api get account by name and id (#428)
- [GASPRICE] modify gas price oracle (#417)
- [ACCOUNT] modify account fliter balance zero (#414)
### Added
- [LOG] add some log print
- [RPC] add rpc dpos_snapShotStake and fixed GetActivedCandidate
- [FILTERS] add filters rpc (#431)
- [MOD] support go mod (#429)
- [VM] add timeout func (#419) and add callwithpay (#425)

2 changes: 2 additions & 0 deletions cmd/ft/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ var RootCmd = &cobra.Command{
log.Error("debug setup faild", "err", err)
}

log.Info("fractal node", "version", utils.FullVersion())

node, err := makeNode()
if err != nil {
log.Error("ft make node failed.", "err", err)
Expand Down
17 changes: 17 additions & 0 deletions cmd/utils/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,23 @@ 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.25 - 2019-08-07",
`### Forked
- [DPOS] fork3: reduce CandidateAvailableMinQuantity (#416)
### Fixed
- [MINER] fixed some bugs (#421)(#422)
- [TXPOOL] fixed txpool add remotes not check the same tx was exist (#423)
- [TXPOOL] fixed txpool rpc send same tx err (#430)
- [ACCOUNT] fix internal action bug (#424)
### Changed
- [RPCAPI] modify api get account by name and id (#428)
- [GASPRICE] modify gas price oracle (#417)
- [ACCOUNT] modify account fliter balance zero (#414)
### Added
- [FILTERS] add filters rpc (#431)
- [MOD] support go mod (#429)
- [VM] add timeout func (#419) and add callwithpay (#425)
`,
"0.0.24 - 2019-07-30",
`### Fixed
- [BLOCKCHAIN] blockchain store irreversible number
Expand Down
6 changes: 3 additions & 3 deletions cmd/utils/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func version() {
if commit != "" {
fmt.Println("Git Commit:", commit)
}
fmt.Println("Version:", fullVersion())
fmt.Println("Version:", FullVersion())
fmt.Println("Architecture:", runtime.GOARCH)
if goversion != "" {
fmt.Println("Go Version:", goversion)
Expand All @@ -52,8 +52,8 @@ func version() {
fmt.Printf("GOROOT=%s\n", runtime.GOROOT())
}

// fullVersion returns the version.
func fullVersion() string {
// FullVersion returns the version.
func FullVersion() string {
version := History.CurrentVersion().String()
if commit != "" {
version += "+commit." + commit
Expand Down

0 comments on commit cef965e

Please sign in to comment.