Skip to content

Commit b653442

Browse files
authored
Merge pull request #16 from tendermint/develop
Develop
2 parents 6b06ad6 + 456e0dd commit b653442

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.2.2 (June 5, 2017)
4+
5+
BUG FIXES:
6+
- Actually start the Merkleeyes server
7+
38
## 0.2.1 (June 2, 2017)
49

510
IMPROVEMENTS:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ install:
1010
go install github.com/tendermint/merkleeyes/cmd/...
1111

1212
dist:
13-
@ sudo bash scripts/dist.sh
13+
@ bash scripts/dist.sh
1414
@ bash scripts/publish.sh
1515

1616
test:

cmd/app.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ func StartServer(cmd *cobra.Command, args []string) {
3333
app := application.NewMerkleEyesApp(dbName, cache)
3434
server, err := server.NewServer(address, abci, app)
3535

36+
if err != nil {
37+
cmn.Exit(err.Error())
38+
}
39+
_, err = server.Start()
3640
if err != nil {
3741
cmn.Exit(err.Error())
3842
}

scripts/dist.sh

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
2121
# Change into that dir because we expect that.
2222
cd "$DIR"
2323

24-
# Generate the tag.
25-
if [ -z "$NOTAG" ]; then
26-
echo "==> Tagging..."
27-
git commit --allow-empty -a -m "Release v$VERSION"
28-
git tag -a -m "Version $VERSION" "v${VERSION}" master
29-
fi
24+
25+
# Delete the old dir
26+
echo "==> Removing old directory..."
27+
rm -rf build/pkg
28+
mkdir -p build/pkg
3029

3130
# Do a hermetic build inside a Docker container.
3231
docker build -t tendermint/${REPO_NAME}-builder scripts/${REPO_NAME}-builder/

scripts/dist_build.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ GIT_IMPORT="github.com/tendermint/merkleeyes/version"
1818
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
1919
XC_OS=${XC_OS:-"solaris darwin freebsd linux windows"}
2020

21-
# Delete the old dir
22-
echo "==> Removing old directory..."
23-
rm -rf build/pkg
24-
mkdir -p build/pkg
25-
2621
# Make sure build tools are available.
2722
make tools
2823

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package version
22

33
const Maj = "0"
44
const Min = "2"
5-
const Fix = "1"
5+
const Fix = "2"
66

7-
const Version = "0.2.1"
7+
const Version = "0.2.2"

0 commit comments

Comments
 (0)