Skip to content

Commit

Permalink
Merge pull request cosmos#30 from tendermint/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ebuchman authored Sep 22, 2017
2 parents 95b7c9e + e6ea949 commit 311e8c1
Show file tree
Hide file tree
Showing 38 changed files with 330 additions and 2,304 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.3.0 (September 22, 2017)

BREAKING CHANGES:

- Remove `cmd` and `keys/tx` packages altogether: move it to the cosmos-sdk
- `cryptostore.Generator` takes a secret
- Remove `String()` from `Signature` interface

FEATURES:

- `keys`: add CRC16 error correcting code

IMPROVEMENTS:

- Allow no passwords on keys for development convenience


## 0.2.1 (June 21, 2017)

- Improve keys command
Expand Down
24 changes: 3 additions & 21 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,32 +1,14 @@
.PHONEY: all docs test install get_vendor_deps ensure_tools codegen wordlist
.PHONEY: all test install get_vendor_deps ensure_tools codegen wordlist

GOTOOLS = \
github.com/Masterminds/glide \
github.com/jteeuwen/go-bindata/go-bindata
REPO:=github.com/tendermint/go-crypto

docs:
@go get github.com/davecheney/godoc2md
godoc2md $(REPO) > README.md
all: get_vendor_deps test

all: get_vendor_deps install test

install:
go install ./cmd/keys

test: test_unit test_cli

test_unit:
test:
go test `glide novendor`
#go run tests/tendermint/*.go

test_cli: tests/shunit2
# sudo apt-get install jq
@./tests/keys.sh

tests/shunit2:
wget "https://raw.githubusercontent.com/kward/shunit2/master/source/2.1/src/shunit2" \
-q -O tests/shunit2

get_vendor_deps: ensure_tools
@rm -rf vendor/
Expand Down
Loading

0 comments on commit 311e8c1

Please sign in to comment.