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

Commit 198dccf

Browse files
authored
Merge pull request #269 from tendermint/release/v0.12.0
Release/v0.12.0
2 parents 0b0d9d0 + 1eeebab commit 198dccf

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

CHANGELOG.md

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

3+
## 0.12.0
4+
5+
*2018-06-12*
6+
7+
BREAKING CHANGES:
8+
9+
- [abci-cli] Change rpc port from 46658 to 26658.
10+
- [examples] Change rpc port from 46658 to 26658.
11+
312
## 0.11.0
413

514
*June 6, 2018*

cmd/abci-cli/abci-cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func Execute() error {
110110
}
111111

112112
func addGlobalFlags() {
113-
RootCmd.PersistentFlags().StringVarP(&flagAddress, "address", "", "tcp://0.0.0.0:46658", "address of application socket")
113+
RootCmd.PersistentFlags().StringVarP(&flagAddress, "address", "", "tcp://0.0.0.0:26658", "address of application socket")
114114
RootCmd.PersistentFlags().StringVarP(&flagAbci, "abci", "", "socket", "either socket or grpc")
115115
RootCmd.PersistentFlags().BoolVarP(&flagVerbose, "verbose", "v", false, "print the command and results as if it were a console session")
116116
RootCmd.PersistentFlags().StringVarP(&flagLogLevel, "log_level", "", "debug", "set the logger level")

example/python/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def event(self):
6868
if __name__ == '__main__':
6969
l = len(sys.argv)
7070
if l == 1:
71-
port = 46658
71+
port = 26658
7272
elif l == 2:
7373
port = int(sys.argv[1])
7474
else:

example/python3/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def event(self):
6868
if __name__ == '__main__':
6969
l = len(sys.argv)
7070
if l == 1:
71-
port = 46658
71+
port = 26658
7272
elif l == 2:
7373
port = int(sys.argv[1])
7474
else:

tests/client_server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
func TestClientServerNoAddrPrefix(t *testing.T) {
14-
addr := "localhost:46658"
14+
addr := "localhost:26658"
1515
transport := "socket"
1616
app := kvstore.NewKVStoreApplication()
1717

tests/test_app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
func startClient(abciType string) abcicli.Client {
1414
// Start client
15-
client, err := abcicli.NewClient("tcp://127.0.0.1:46658", abciType, true)
15+
client, err := abcicli.NewClient("tcp://127.0.0.1:26658", abciType, true)
1616
if err != nil {
1717
panic(err.Error())
1818
}

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package version
33
// NOTE: we should probably be versioning the ABCI and the abci-cli separately
44

55
const Maj = "0"
6-
const Min = "11"
6+
const Min = "12"
77
const Fix = "0"
88

9-
const Version = "0.11.0"
9+
const Version = "0.12.0"

0 commit comments

Comments
 (0)