Skip to content

Commit

Permalink
v0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danil-lashin committed Sep 17, 2018
1 parent 0413683 commit 02dff97
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.3.7
*Sept 17th, 2018*

IMPROVEMENT

- [core] Performance update

## 0.3.6
*Sept 15th, 2018*

Expand Down
4 changes: 4 additions & 0 deletions api/balance_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ func handleBalanceChanges() {

func handleBalanceChange(msg state.BalanceChangeStruct) {

if len(clients) < 1 {
return
}

defer func() {
if r := recover(); r != nil {
log.Error("Error in balance change handler")
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.3.4
image: minterteam/minter:0.3.7
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 = "3"
Fix = "6"
Fix = "7"
)

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

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

0 comments on commit 02dff97

Please sign in to comment.