Skip to content

Commit a4f7761

Browse files
authored
release v5.0.x: bump to SDK v0.46.3, prepare changelog for v5.0.1 patch release (cosmos#2623)
* chore: prepare v5.0.1 release * chore: fill in changelog * chore: add more info to changelog entry
1 parent 7575859 commit a4f7761

File tree

3 files changed

+124
-82
lines changed

3 files changed

+124
-82
lines changed

CHANGELOG.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,11 @@ Ref: https://keepachangelog.com/en/1.0.0/
3434

3535
# Changelog
3636

37-
## [Unreleased]
37+
## [v5.0.1](https://github.com/cosmos/ibc-go/releases/tag/v5.0.1) - 2022-10-27
3838

3939
### Dependencies
4040

41-
### API Breaking
42-
43-
### State Machine Breaking
44-
45-
### Improvements
46-
47-
### Features
48-
49-
### Bug Fixes
41+
* [\#2623](https://github.com/cosmos/ibc-go/pull/2623) Bump SDK version to v0.46.3 and Tendermint version to v0.34.22.
5042

5143
## [v5.0.0](https://github.com/cosmos/ibc-go/releases/tag/v5.0.0) - 2022-09-28
5244

go.mod

+39-26
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ go 1.18
22

33
module github.com/cosmos/ibc-go/v5
44

5-
replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
5+
retract v5.0.0 // depends on SDK version without dragonberry fix
66

77
require (
88
cosmossdk.io/math v1.0.0-beta.3
99
github.com/armon/go-metrics v0.4.0
1010
github.com/confio/ics23/go v0.7.0
11-
github.com/cosmos/cosmos-sdk v0.46.1
11+
github.com/cosmos/cosmos-sdk v0.46.3
1212
github.com/gogo/protobuf v1.3.3
1313
github.com/golang/protobuf v1.5.2
1414
github.com/gorilla/mux v1.8.0
@@ -17,21 +17,21 @@ require (
1717
github.com/regen-network/cosmos-proto v0.3.1
1818
github.com/spf13/cast v1.5.0
1919
github.com/spf13/cobra v1.5.0
20-
github.com/spf13/viper v1.12.0
20+
github.com/spf13/viper v1.13.0
2121
github.com/stretchr/testify v1.8.0
22-
github.com/tendermint/tendermint v0.34.21
22+
github.com/tendermint/tendermint v0.34.22
2323
github.com/tendermint/tm-db v0.6.7
24-
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b
25-
google.golang.org/grpc v1.49.0
24+
google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959
25+
google.golang.org/grpc v1.50.0
2626
google.golang.org/protobuf v1.28.1
2727
gopkg.in/yaml.v2 v2.4.0
2828
)
2929

3030
require (
31-
cloud.google.com/go v0.100.2 // indirect
32-
cloud.google.com/go/compute v1.6.1 // indirect
33-
cloud.google.com/go/iam v0.3.0 // indirect
34-
cloud.google.com/go/storage v1.14.0 // indirect
31+
cloud.google.com/go v0.102.1 // indirect
32+
cloud.google.com/go/compute v1.7.0 // indirect
33+
cloud.google.com/go/iam v0.4.0 // indirect
34+
cloud.google.com/go/storage v1.22.1 // indirect
3535
cosmossdk.io/errors v1.0.0-beta.7 // indirect
3636
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
3737
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
@@ -46,13 +46,14 @@ require (
4646
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
4747
github.com/cespare/xxhash v1.1.0 // indirect
4848
github.com/cespare/xxhash/v2 v2.1.2 // indirect
49+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
4950
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
5051
github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect
5152
github.com/cosmos/btcutil v1.0.4 // indirect
5253
github.com/cosmos/cosmos-proto v1.0.0-alpha7 // indirect
5354
github.com/cosmos/go-bip39 v1.0.0 // indirect
5455
github.com/cosmos/gorocksdb v1.2.0 // indirect
55-
github.com/cosmos/iavl v0.19.1 // indirect
56+
github.com/cosmos/iavl v0.19.3 // indirect
5657
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect
5758
github.com/cosmos/ledger-go v0.9.2 // indirect
5859
github.com/creachadair/taskgroup v0.3.2 // indirect
@@ -76,8 +77,12 @@ require (
7677
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7778
github.com/golang/snappy v0.0.4 // indirect
7879
github.com/google/btree v1.0.1 // indirect
80+
github.com/google/go-cmp v0.5.8 // indirect
7981
github.com/google/orderedcode v0.0.1 // indirect
82+
github.com/google/uuid v1.3.0 // indirect
83+
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
8084
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
85+
github.com/googleapis/go-type-adapters v1.0.0 // indirect
8186
github.com/gorilla/handlers v1.5.1 // indirect
8287
github.com/gorilla/websocket v1.5.0 // indirect
8388
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
@@ -93,39 +98,40 @@ require (
9398
github.com/hashicorp/hcl v1.0.0 // indirect
9499
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
95100
github.com/improbable-eng/grpc-web v0.15.0 // indirect
96-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
101+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
97102
github.com/jmespath/go-jmespath v0.4.0 // indirect
98103
github.com/jmhodges/levigo v1.0.0 // indirect
99104
github.com/klauspost/compress v1.15.9 // indirect
100105
github.com/lib/pq v1.10.6 // indirect
101106
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
102107
github.com/magiconair/properties v1.8.6 // indirect
103-
github.com/mattn/go-colorable v0.1.12 // indirect
104-
github.com/mattn/go-isatty v0.0.14 // indirect
108+
github.com/manifoldco/promptui v0.9.0 // indirect
109+
github.com/mattn/go-colorable v0.1.13 // indirect
110+
github.com/mattn/go-isatty v0.0.16 // indirect
105111
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
106-
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
112+
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
107113
github.com/minio/highwayhash v1.0.2 // indirect
108114
github.com/mitchellh/go-homedir v1.1.0 // indirect
109115
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
110116
github.com/mitchellh/mapstructure v1.5.0 // indirect
111117
github.com/mtibben/percent v0.2.1 // indirect
112118
github.com/pelletier/go-toml v1.9.5 // indirect
113-
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
119+
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
114120
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
115121
github.com/pkg/errors v0.9.1 // indirect
116122
github.com/pmezard/go-difflib v1.0.0 // indirect
117123
github.com/prometheus/client_golang v1.12.2 // indirect
118124
github.com/prometheus/client_model v0.2.0 // indirect
119125
github.com/prometheus/common v0.34.0 // indirect
120126
github.com/prometheus/procfs v0.7.3 // indirect
121-
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
127+
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
122128
github.com/rs/cors v1.8.2 // indirect
123129
github.com/rs/zerolog v1.27.0 // indirect
124-
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
130+
github.com/sasha-s/go-deadlock v0.3.1 // indirect
125131
github.com/spf13/afero v1.8.2 // indirect
126132
github.com/spf13/jwalterweatherman v1.1.0 // indirect
127133
github.com/spf13/pflag v1.0.5 // indirect
128-
github.com/subosito/gotenv v1.4.0 // indirect
134+
github.com/subosito/gotenv v1.4.1 // indirect
129135
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
130136
github.com/tendermint/btcd v0.1.1 // indirect
131137
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
@@ -134,18 +140,25 @@ require (
134140
github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266 // indirect
135141
go.etcd.io/bbolt v1.3.6 // indirect
136142
go.opencensus.io v0.23.0 // indirect
137-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
143+
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
138144
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
139-
golang.org/x/net v0.0.0-20220726230323-06994584191e // indirect
140-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
141-
golang.org/x/sys v0.0.0-20220727055044-e65921a090b8 // indirect
145+
golang.org/x/net v0.0.0-20220812174116-3211cb980234 // indirect
146+
golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2 // indirect
147+
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
142148
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
143149
golang.org/x/text v0.3.7 // indirect
144-
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
145-
google.golang.org/api v0.81.0 // indirect
150+
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
151+
google.golang.org/api v0.93.0 // indirect
146152
google.golang.org/appengine v1.6.7 // indirect
147-
gopkg.in/ini.v1 v1.66.6 // indirect
153+
gopkg.in/ini.v1 v1.67.0 // indirect
148154
gopkg.in/yaml.v3 v3.0.1 // indirect
149155
nhooyr.io/websocket v1.8.6 // indirect
150156
sigs.k8s.io/yaml v1.3.0 // indirect
151157
)
158+
159+
replace (
160+
// dragonberry replace for ics23
161+
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
162+
163+
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
164+
)

0 commit comments

Comments
 (0)