Skip to content

Commit

Permalink
v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danil-lashin committed Dec 10, 2018
1 parent c733d5d commit d76a687
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.8.1
*Dec 10th, 2018*

IMPROVEMENT

- [core] Speed-up tx processing

BUG FIXES

- [config] Change default seed node

## 0.8.0
*Dec 3rd, 2018*

Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func init() {
func DefaultConfig() *Config {
cfg := defaultConfig()

cfg.P2P.Seeds = "d20522aa7ba4af8139749c5e724063c4ba18c58b@minter-node-2.testnet.minter.network:26656"
cfg.P2P.Seeds = "647e32df3b9c54809b5aca2877d9ba60900bc2d9@minter-node-1.testnet.minter.network:26656"

cfg.TxIndex = &tmConfig.TxIndexConfig{
Indexer: "kv",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.4"
services:
minter:
image: minterteam/minter:0.8.0
image: minterteam/minter:0.8.1
volumes:
- ~/.minter:/minter
ports:
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ package version
const (
Maj = "0"
Min = "8"
Fix = "0"
Fix = "1"
)

var (
// Must be a string because scripts like dist.sh read this file.
Version = "0.8.0"
Version = "0.8.1"

// GitCommit is the current HEAD set using ldflags.
GitCommit string
Expand Down

0 comments on commit d76a687

Please sign in to comment.