Skip to content

Commit badd36f

Browse files
author
Haifeng Xi
authored
Merge pull request #2024 from irisnet/hotfix/v0.15.2
R4R: Bump Tendermint version to irisnet/tendermint [v0.31.1]
2 parents 938cf7b + 0796654 commit badd36f

File tree

7 files changed

+84
-67
lines changed

7 files changed

+84
-67
lines changed

CHANGELOG.md

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

3+
## 0.15.3
4+
5+
*Oct 2th, 2019*
6+
7+
### Tendermint
8+
9+
Bump Tendermint version to irisnet/tendermint [v0.31.1](https://github.com/irisnet/tendermint/releases/tag/v0.31.1) to fix the p2p panic error.
10+
311
## 0.15.2
412

513
*Sep 11th, 2019*

docs/software/How-to-install-irishub.md

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

33
## Latest Version
44

5-
The Latest version of IRIShub is [v0.15.2](https://github.com/irisnet/irishub/releases/latest)
5+
The Latest version of IRIShub is [v0.15.3](https://github.com/irisnet/irishub/releases/latest)
66

77
::: tip
8-
Please replace <latest_iris_version> below with v0.15.2
8+
Please replace <latest_iris_version> below with v0.15.3
99
:::
1010

1111
## Configure Your Server

docs/zh/software/How-to-install-irishub.md

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

33
## 最新版本
44

5-
当前IRIShub最新版本为 [v0.15.2](https://github.com/irisnet/irishub/releases/latest)
5+
当前IRIShub最新版本为 [v0.15.3](https://github.com/irisnet/irishub/releases/latest)
66

77
::: tip
8-
请将下文中的 <latest_iris_version> 替换为 v0.15.2
8+
请将下文中的 <latest_iris_version> 替换为 v0.15.3
99
:::
1010

1111
## 服务器配置要求

go.mod

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,51 @@
11
module github.com/irisnet/irishub
22

33
require (
4+
github.com/BurntSushi/toml v0.3.1 // indirect
5+
github.com/VividCortex/gohistogram v1.0.0 // indirect
46
github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d
5-
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
7+
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
68
github.com/bgentry/speakeasy v0.1.0
79
github.com/btcsuite/btcd v0.0.0-20181013004428-67e573d211ac
8-
github.com/btcsuite/btcutil v0.0.0-20180524032703-d4cc87b86016
10+
github.com/btcsuite/btcutil v0.0.0-20180524032703-d4cc87b86016 // indirect
911
github.com/cosmos/go-bip39 v0.0.0-20180618194314-52158e4697b8
10-
github.com/davecgh/go-spew v1.1.1
1112
github.com/emicklei/proto v1.6.5
1213
github.com/fortytw2/leaktest v1.3.0 // indirect
13-
github.com/fsnotify/fsnotify v1.4.7
1414
github.com/go-kit/kit v0.6.0
15-
github.com/go-logfmt/logfmt v0.3.0
16-
github.com/go-stack/stack v1.8.0
15+
github.com/go-logfmt/logfmt v0.3.0 // indirect
16+
github.com/go-stack/stack v1.8.0 // indirect
1717
github.com/gogo/protobuf v1.1.1
18-
github.com/golang/protobuf v1.1.0
19-
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db
20-
github.com/gorilla/context v1.1.1
18+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
19+
github.com/golang/protobuf v1.2.0
20+
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
21+
github.com/google/gofuzz v1.0.0 // indirect
22+
github.com/gorilla/context v1.1.1 // indirect
2123
github.com/gorilla/mux v1.6.2
22-
github.com/gorilla/websocket v1.2.0
23-
github.com/hashicorp/hcl v1.0.0
24-
github.com/inconshreveable/mousetrap v1.0.0
25-
github.com/jmhodges/levigo v0.0.0-20161115193449-c42d9e0ca023
26-
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515
27-
github.com/magiconair/properties v1.8.0
24+
github.com/gorilla/websocket v1.2.0 // indirect
25+
github.com/hashicorp/hcl v1.0.0 // indirect
26+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
27+
github.com/jmhodges/levigo v0.0.0-20161115193449-c42d9e0ca023 // indirect
28+
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect
29+
github.com/magiconair/properties v1.8.0 // indirect
2830
github.com/mattn/go-isatty v0.0.4
29-
github.com/matttproud/golang_protobuf_extensions v1.0.1
31+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
3032
github.com/mitchellh/go-homedir v1.0.0
31-
github.com/mitchellh/mapstructure v1.1.2
33+
github.com/mitchellh/mapstructure v1.1.2 // indirect
34+
github.com/onsi/ginkgo v1.10.2 // indirect
35+
github.com/onsi/gomega v1.7.0 // indirect
3236
github.com/pelletier/go-toml v1.2.0
3337
github.com/pkg/errors v0.8.0
34-
github.com/pmezard/go-difflib v1.0.0
3538
github.com/prometheus/client_golang v0.9.1
36-
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
37-
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39
38-
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d
39+
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect
40+
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39 // indirect
41+
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d // indirect
3942
github.com/rakyll/statik v0.1.6
40-
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165
41-
github.com/rs/cors v1.6.0
42-
github.com/spf13/afero v1.1.2
43-
github.com/spf13/cast v1.3.0
43+
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165 // indirect
44+
github.com/rs/cors v1.6.0 // indirect
45+
github.com/spf13/afero v1.1.2 // indirect
46+
github.com/spf13/cast v1.3.0 // indirect
4447
github.com/spf13/cobra v0.0.1
45-
github.com/spf13/jwalterweatherman v1.0.0
48+
github.com/spf13/jwalterweatherman v1.0.0 // indirect
4649
github.com/spf13/pflag v1.0.3
4750
github.com/spf13/viper v1.0.0
4851
github.com/stretchr/testify v1.2.2
@@ -52,20 +55,18 @@ require (
5255
github.com/tendermint/iavl v0.12.1
5356
github.com/tendermint/tendermint v0.31.0
5457
github.com/tendermint/tmlibs v0.9.0
55-
github.com/zondax/hid v0.9.0
58+
github.com/zondax/hid v0.9.0 // indirect
5659
github.com/zondax/ledger-cosmos-go v0.9.7
57-
github.com/zondax/ledger-go v0.8.0
60+
github.com/zondax/ledger-go v0.8.0 // indirect
5861
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
59-
golang.org/x/net v0.0.0-20180710023853-292b43bbf7cb
60-
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc
61-
golang.org/x/text v0.3.0
62-
google.golang.org/genproto v0.0.0-20180808183934-383e8b2c3b9e
63-
google.golang.org/grpc v1.13.0
64-
gopkg.in/yaml.v2 v2.2.1
62+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
63+
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc // indirect
64+
google.golang.org/genproto v0.0.0-20180808183934-383e8b2c3b9e // indirect
65+
google.golang.org/grpc v1.13.0 // indirect
6566
)
6667

6768
replace (
6869
github.com/tendermint/iavl => github.com/irisnet/iavl v0.12.2
69-
github.com/tendermint/tendermint => github.com/irisnet/tendermint v0.31.0
70+
github.com/tendermint/tendermint => github.com/irisnet/tendermint v0.31.1
7071
golang.org/x/crypto => github.com/tendermint/crypto v0.0.0-20180820045704-3764759f34a5
7172
)

go.sum

Lines changed: 34 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
2+
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
3+
github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE=
4+
github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g=
15
github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d h1:1aAija9gr0Hyv4KfQcRcwlmFIrhkDmIj2dz5bkg/s/8=
26
github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d/go.mod h1:icNx/6QdFblhsEjZehARqbNumymUT/ydwlLojFdv7Sk=
37
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0=
@@ -10,7 +14,6 @@ github.com/btcsuite/btcutil v0.0.0-20180524032703-d4cc87b86016 h1:BsZAJgCuMsoFZM
1014
github.com/btcsuite/btcutil v0.0.0-20180524032703-d4cc87b86016/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=
1115
github.com/cosmos/go-bip39 v0.0.0-20180618194314-52158e4697b8 h1:Iwin12wRQtyZhH6FV3ykFcdGNlYEzoeR0jN8Vn+JWsI=
1216
github.com/cosmos/go-bip39 v0.0.0-20180618194314-52158e4697b8/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y=
13-
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1417
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1518
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1619
github.com/emicklei/proto v1.6.5 h1:HiOjyLb7plgNx11OAafETxIKZpHynl+wRSob6QRc9QA=
@@ -27,37 +30,33 @@ github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=
2730
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
2831
github.com/gogo/protobuf v1.1.1 h1:72R+M5VuhED/KujmZVcIquuo8mBgX4oVda//DQb3PXo=
2932
github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
30-
github.com/golang/protobuf v1.1.0 h1:0iH4Ffd/meGoXqF2lSAhZHt8X+cPgkfn/cb6Cce5Vpc=
31-
github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
33+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=
34+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
35+
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
36+
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
3237
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w=
3338
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
39+
github.com/google/gofuzz v1.0.0 h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=
40+
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
41+
github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=
3442
github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=
3543
github.com/gorilla/mux v1.6.2 h1:Pgr17XVTNXAk3q/r4CpKzC5xBM/qW1uVLV+IhRZpIIk=
3644
github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
3745
github.com/gorilla/websocket v1.2.0 h1:VJtLvh6VQym50czpZzx07z/kw9EgAxI3x1ZB8taTMQQ=
3846
github.com/gorilla/websocket v1.2.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
3947
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
4048
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
49+
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
50+
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
51+
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
4152
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
4253
github.com/irisnet/iavl v0.12.2 h1:M7Y0FwWNRGTq3j+DLbEHAKjTsBaxoovc/A1RaKhdKhY=
4354
github.com/irisnet/iavl v0.12.2/go.mod h1:JRGfj9mLdUSdoBSpYjo14FRe/qyKv3YKHwHnhuxzKaQ=
44-
github.com/irisnet/tendermint v0.22.3-0.20190507130700-708dddb312c0 h1:gOH5Qi8tT+4PD/niomccLfn+MiV1txGVRUYvAxOEcb4=
45-
github.com/irisnet/tendermint v0.22.3-0.20190507130700-708dddb312c0/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
46-
github.com/irisnet/tendermint v0.22.3-0.20190516092700-c101ef8f34ba h1:CN56RuqmmkhRGWhUmmhFsT3yMBQKvAWnKIP/yyY6azE=
47-
github.com/irisnet/tendermint v0.22.3-0.20190516092700-c101ef8f34ba/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
48-
github.com/irisnet/tendermint v0.22.3-0.20190517035621-b9ea8b8ba1ef h1:vMt/eykM9+Guof2CFW704kcXjBmCS6ivFFcXYsjX9+k=
49-
github.com/irisnet/tendermint v0.22.3-0.20190517035621-b9ea8b8ba1ef/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
50-
github.com/irisnet/tendermint v0.22.3-0.20190527110704-aff684d6c906 h1:sLmBhJ+Xq+eHrtV1LHv+vhhljwvlx21MFDQvKI6BW1k=
51-
github.com/irisnet/tendermint v0.22.3-0.20190527110704-aff684d6c906/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
52-
github.com/irisnet/tendermint v0.22.3-0.20190621081259-2398bfb090db h1:hKp+UCMMhGhpHYnx+N07mYfp/eOIuzEeqz/jolU7Qbw=
53-
github.com/irisnet/tendermint v0.22.3-0.20190621081259-2398bfb090db/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
54-
github.com/irisnet/tendermint v0.27.4 h1:r3o/l89P2D0hAUyM2iLQDfCCJ1qZSp68+MMGgqfBvjQ=
55-
github.com/irisnet/tendermint v0.27.4/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
56-
github.com/irisnet/tendermint v0.28.0 h1:gU12hGvpcGgIfAvDjZ4PuoWl0h6b573BGbxEmYWpbFQ=
57-
github.com/irisnet/tendermint v0.28.0/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
58-
github.com/irisnet/tendermint v0.31.0 h1:1kIetGqQrYaE+6b/w/2VecI4NAAca0r2NFaRbZwxRZA=
59-
github.com/irisnet/tendermint v0.31.0/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
55+
github.com/irisnet/tendermint v0.31.1 h1:RDUdfMVCfya/OJV4FhjlEfvVTXlGSrI0IuKvPf+Chfs=
56+
github.com/irisnet/tendermint v0.31.1/go.mod h1:cLvoTnSF/1xKjgwfUwqE+frnDCrHCWInffCVfR3eo50=
57+
github.com/jmhodges/levigo v0.0.0-20161115193449-c42d9e0ca023 h1:y5P5G9cANJZt3MXlMrgELo5mNLZPXH8aGFFFG7IzPU0=
6058
github.com/jmhodges/levigo v0.0.0-20161115193449-c42d9e0ca023/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+nNuzMJQ=
59+
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=
6160
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
6261
github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=
6362
github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
@@ -69,6 +68,11 @@ github.com/mitchellh/go-homedir v1.0.0 h1:vKb8ShqSby24Yrqr/yDYkuFz8d0WUjys40rvnG
6968
github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
7069
github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=
7170
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
71+
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
72+
github.com/onsi/ginkgo v1.10.2 h1:uqH7bpe+ERSiDa34FDOF7RikN6RzXgduUF8yarlZp94=
73+
github.com/onsi/ginkgo v1.10.2/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
74+
github.com/onsi/gomega v1.7.0 h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=
75+
github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
7276
github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=
7377
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
7478
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
@@ -83,8 +87,6 @@ github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39 h1:Cto4X6SVMWRPB
8387
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=
8488
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d h1:GoAlyOgbOEIFdaDqxJVlbOQ1DtGmZWs/Qau0hIlk+WQ=
8589
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
86-
github.com/rakyll/statik v0.1.4 h1:zCS/YQCxfo/fQjCtGVGIyWGFnRbQ18Y55mhS3XPE+Oo=
87-
github.com/rakyll/statik v0.1.4/go.mod h1:OEi9wJV/fMUAGx1eNjq75DKDsJVuEv1U0oYdX6GX8Zs=
8890
github.com/rakyll/statik v0.1.6 h1:uICcfUXpgqtw2VopbIncslhAmE5hwc4g20TEyEENBNs=
8991
github.com/rakyll/statik v0.1.6/go.mod h1:OEi9wJV/fMUAGx1eNjq75DKDsJVuEv1U0oYdX6GX8Zs=
9092
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165 h1:nkcn14uNmFEuGCb2mBZbBb24RdNRL08b/wb+xBOYpuk=
@@ -103,7 +105,6 @@ github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
103105
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
104106
github.com/spf13/viper v1.0.0 h1:RUA/ghS2i64rlnn4ydTfblY8Og8QzcPtCcHvgMn+w/I=
105107
github.com/spf13/viper v1.0.0/go.mod h1:A8kyI5cUJhb8N+3pkfONlcEcZbueH6nhAm0Fq7SrnBM=
106-
github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
107108
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
108109
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
109110
github.com/syndtr/goleveldb v0.0.0-20180708030551-c4c61651e9e3 h1:sAlSBRDl4psFR3ysKXRSE8ss6Mt90+ma1zRTroTNBJA=
@@ -114,8 +115,6 @@ github.com/tendermint/crypto v0.0.0-20180820045704-3764759f34a5 h1:u8i49c+BxloX3
114115
github.com/tendermint/crypto v0.0.0-20180820045704-3764759f34a5/go.mod h1:z4YtwM70uOnk8h0pjJYlj3zdYwi9l03By6iAIF5j/Pk=
115116
github.com/tendermint/go-amino v0.14.0 h1:KQpB5tjLqe4+m/TQT93lfg1VdYypbEwrqtDMk84o4Bs=
116117
github.com/tendermint/go-amino v0.14.0/go.mod h1:i/UKE5Uocn+argJJBb12qTZsCDBcAYMbR92AaJVmKso=
117-
github.com/tendermint/tendermint v0.27.4 h1:rytK6+o/TYPhLJJu/tRaq6PBx/25VGAwiee2qdNnFsY=
118-
github.com/tendermint/tendermint v0.27.4/go.mod h1:ymcPyWblXCplCPQjbOYbrF1fWnpslATMVqiGgWbZrlc=
119118
github.com/tendermint/tmlibs v0.9.0 h1:3aU/D2v3aecqpODOuBXCfi950bHTefD5Pps5X3XuJDc=
120119
github.com/tendermint/tmlibs v0.9.0/go.mod h1:4L0tAKpLTioy14VnmbXYTLIJN0pCMiehxDMdN6zZfM8=
121120
github.com/zondax/hid v0.9.0 h1:eiT3P6vNxAEVxXMw66eZUAAnU2zD33JBkfG/EnfAKl8=
@@ -124,8 +123,12 @@ github.com/zondax/ledger-cosmos-go v0.9.7 h1:ESMr8Oz14qePJ4oJd1Qqxgd7bxhySkrSTbe
124123
github.com/zondax/ledger-cosmos-go v0.9.7/go.mod h1:uhu/ldrtzhUH7RoWoTKK4MxBi/CXfyViVA0OCYTiHdM=
125124
github.com/zondax/ledger-go v0.8.0 h1:QU2VXfwq2hSfgOMRDbJfPZLs8PyhdcuASIAyLSL5ewo=
126125
github.com/zondax/ledger-go v0.8.0/go.mod h1:b2vIcu3u9gJoIx4kTWuXOgzGV7FPWeUktqRqVf6feG0=
127-
golang.org/x/net v0.0.0-20180710023853-292b43bbf7cb h1:PAKVwwP1nEjfk4uJNEexGhA63YbChR1LMCGYAj1V0rU=
128-
golang.org/x/net v0.0.0-20180710023853-292b43bbf7cb/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
126+
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd h1:nTDtHvHSdCn1m6ITfMRqtOd/9+7a3s8RBNOZ3eYZzJA=
127+
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
128+
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
129+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=
130+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
131+
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
129132
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc h1:SdCq5U4J+PpbSDIl9bM0V1e1Ug1jsnBkAFvTs1htn7U=
130133
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
131134
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
@@ -134,6 +137,11 @@ google.golang.org/genproto v0.0.0-20180808183934-383e8b2c3b9e h1:8mImbC+7codRhTI
134137
google.golang.org/genproto v0.0.0-20180808183934-383e8b2c3b9e/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
135138
google.golang.org/grpc v1.13.0 h1:bHIbVsCwmvbArgCJmLdgOdHFXlKqTOVjbibbS19cXHc=
136139
google.golang.org/grpc v1.13.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=
140+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
137141
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
142+
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
143+
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
144+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
145+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
138146
gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE=
139147
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

lite/swagger-ui/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
description: >-
55
A REST interface for state queries, transaction generation and
66
broadcast.
7-
version: "0.15.2"
7+
version: "0.15.3"
88
title: IRISLCD Swagger-UI
99
termsOfService: 'https://www.irisnet.org'
1010
contact:

version/version.go

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

1111
// Version - Iris Version
1212
const ProtocolVersion = 1
13-
const Version = "0.15.2"
13+
const Version = "0.15.3"
1414

1515
// GitCommit set by build flags
1616
var GitCommit = ""

0 commit comments

Comments
 (0)