Skip to content

Commit

Permalink
Merge pull request #533 from cosmos/release-v0.11.0
Browse files Browse the repository at this point in the history
Release v0.11.0
  • Loading branch information
ebuchman committed Mar 1, 2018
2 parents 8ccf055 + cba7379 commit f4c2b50
Show file tree
Hide file tree
Showing 73 changed files with 3,758 additions and 615 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.11.0 (March 1, 2017)

BREAKING CHANGES

* [examples] dummy -> kvstore
* [examples] Remove gaia
* [examples/basecoin] MakeTxCodec -> MakeCodec
* [types] CommitMultiStore interface has new `GetCommitKVStore(key StoreKey) CommitKVStore` method

FEATURES

* [examples/basecoin] CLI for `basecli` and `basecoind` (!)
* [baseapp] router.AddRoute returns Router

IMPROVEMENTS

* [baseapp] Run msg handlers on CheckTx
* [docs] Add spec for REST API
* [all] More tests!

BUG FIXES

* [baseapp] Fix panic on app restart
* [baseapp] InitChain does not call Commit
* [basecoin] Remove IBCStore because mounting multiple stores is currently broken

## 0.10.0 (February 20, 2017)

BREAKING CHANGES
Expand Down
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ gaia:

build:
@rm -rf examples/basecoin/vendor/
go build $(BUILD_FLAGS) -o build/basecoind ./examples/basecoin/cmd/basecoind/...
go build $(BUILD_FLAGS) -o build/basecoind ./examples/basecoin/cmd/basecoind
go build $(BUILD_FLAGS) -o build/basecli ./examples/basecoin/cmd/basecli

dist:
@bash publish/dist.sh
Expand Down Expand Up @@ -58,16 +59,19 @@ godocs:
########################################
### Testing

TUTORIALS=$(shell find docs/guide -name "*md" -type f)

#test: test_unit test_cli test_tutorial
test: test_unit # test_cli

# Must be run in each package seperately for the visualization
# Added here for easy reference
# coverage:
# go test -coverprofile=c.out && go tool cover -html=c.out

test_unit:
@rm -rf examples/basecoin/vendor/
@go test $(PACKAGES)

test_cover:
@rm -rf examples/basecoin/vendor/
@bash tests/test_cover.sh

benchmark:
Expand Down
Loading

0 comments on commit f4c2b50

Please sign in to comment.