Skip to content
This repository has been archived by the owner on Jul 15, 2018. It is now read-only.

Commit

Permalink
Merge pull request #269 from tendermint/release/v0.12.0
Browse files Browse the repository at this point in the history
Release/v0.12.0
  • Loading branch information
ValarDragon authored Jun 12, 2018
2 parents 0b0d9d0 + 1eeebab commit 198dccf
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.12.0

*2018-06-12*

BREAKING CHANGES:

- [abci-cli] Change rpc port from 46658 to 26658.
- [examples] Change rpc port from 46658 to 26658.

## 0.11.0

*June 6, 2018*
Expand Down
2 changes: 1 addition & 1 deletion cmd/abci-cli/abci-cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func Execute() error {
}

func addGlobalFlags() {
RootCmd.PersistentFlags().StringVarP(&flagAddress, "address", "", "tcp://0.0.0.0:46658", "address of application socket")
RootCmd.PersistentFlags().StringVarP(&flagAddress, "address", "", "tcp://0.0.0.0:26658", "address of application socket")
RootCmd.PersistentFlags().StringVarP(&flagAbci, "abci", "", "socket", "either socket or grpc")
RootCmd.PersistentFlags().BoolVarP(&flagVerbose, "verbose", "v", false, "print the command and results as if it were a console session")
RootCmd.PersistentFlags().StringVarP(&flagLogLevel, "log_level", "", "debug", "set the logger level")
Expand Down
2 changes: 1 addition & 1 deletion example/python/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def event(self):
if __name__ == '__main__':
l = len(sys.argv)
if l == 1:
port = 46658
port = 26658
elif l == 2:
port = int(sys.argv[1])
else:
Expand Down
2 changes: 1 addition & 1 deletion example/python3/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def event(self):
if __name__ == '__main__':
l = len(sys.argv)
if l == 1:
port = 46658
port = 26658
elif l == 2:
port = int(sys.argv[1])
else:
Expand Down
2 changes: 1 addition & 1 deletion tests/client_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func TestClientServerNoAddrPrefix(t *testing.T) {
addr := "localhost:46658"
addr := "localhost:26658"
transport := "socket"
app := kvstore.NewKVStoreApplication()

Expand Down
2 changes: 1 addition & 1 deletion tests/test_app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

func startClient(abciType string) abcicli.Client {
// Start client
client, err := abcicli.NewClient("tcp://127.0.0.1:46658", abciType, true)
client, err := abcicli.NewClient("tcp://127.0.0.1:26658", abciType, true)
if err != nil {
panic(err.Error())
}
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package version
// NOTE: we should probably be versioning the ABCI and the abci-cli separately

const Maj = "0"
const Min = "11"
const Min = "12"
const Fix = "0"

const Version = "0.11.0"
const Version = "0.12.0"

0 comments on commit 198dccf

Please sign in to comment.