Skip to content

Commit f83aa82

Browse files
update changelog (#1131)
* update changelog * fix typo
1 parent c0675ee commit f83aa82

File tree

1 file changed

+87
-1
lines changed

1 file changed

+87
-1
lines changed

CHANGELOG.md

+87-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,20 @@ Ref: https://keepachangelog.com/en/1.0.0/
3838

3939
### Dependencies
4040

41+
### API Breaking
42+
43+
### State Machine Breaking
44+
45+
### Improvements
46+
47+
### Features
48+
49+
### Bug Fixes
50+
51+
## [v3.0.0](https://github.com/cosmos/ibc-go/releases/tag/v3.0.0) - 2022-03-15
52+
53+
### Dependencies
54+
4155
* [\#404](https://github.com/cosmos/ibc-go/pull/404) Bump Go version to 1.17
4256
* [\#851](https://github.com/cosmos/ibc-go/pull/851) Bump SDK version to v0.45.1
4357
* [\#948](https://github.com/cosmos/ibc-go/pull/948) Bump ics23/go to v0.7
@@ -95,7 +109,40 @@ Ref: https://keepachangelog.com/en/1.0.0/
95109
* (testing) [\#884](https://github.com/cosmos/ibc-go/pull/884) Add and use in simapp a custom ante handler that rejects redundant transactions
96110
* (transfer) [\#978](https://github.com/cosmos/ibc-go/pull/978) Support base denoms with slashes in denom validation
97111
* (client) [\#941](https://github.com/cosmos/ibc-go/pull/941) Classify client states without consensus states as expired
98-
* (modules/core/04-channel) [\#994](https://github.com/cosmos/ibc-go/pull/944) Call `packet.GetSequence()` rather than passing func in `AcknowledgePacket` log output
112+
* (channel) [\#995](https://github.com/cosmos/ibc-go/pull/995) Call `packet.GetSequence()` rather than passing func in `AcknowledgePacket` log output
113+
114+
## [v2.2.0](https://github.com/cosmos/ibc-go/releases/tag/v2.2.0) - 2022-03-15
115+
116+
### Dependencies
117+
118+
* [\#851](https://github.com/cosmos/ibc-go/pull/851) Bump SDK version to v0.45.1
119+
120+
## [v2.1.0](https://github.com/cosmos/ibc-go/releases/tag/v2.1.0) - 2022-03-15
121+
122+
### Dependencies
123+
124+
* [\#1084](https://github.com/cosmos/ibc-go/pull/1084) Bump SDK version to v0.44.6
125+
* [\#948](https://github.com/cosmos/ibc-go/pull/948) Bump ics23/go to v0.7
126+
127+
### State Machine Breaking
128+
129+
* (transfer) [\#818](https://github.com/cosmos/ibc-go/pull/818) Error acknowledgements returned from Transfer `OnRecvPacket` now include a deterministic ABCI code and error message.
130+
131+
### Features
132+
133+
* [\#679](https://github.com/cosmos/ibc-go/pull/679) New CLI command `query ibc-transfer denom-hash <denom trace>` to get the denom hash for a denom trace; this might be useful for debug
134+
135+
### Bug Fixes
136+
137+
* (client) [\#941](https://github.com/cosmos/ibc-go/pull/941) Classify client states without consensus states as expired
138+
* (transfer) [\#978](https://github.com/cosmos/ibc-go/pull/978) Support base denoms with slashes in denom validation
139+
* (channel) [\#995](https://github.com/cosmos/ibc-go/pull/995) Call `packet.GetSequence()` rather than passing func in `AcknowledgePacket` log output
140+
141+
## [v2.0.3](https://github.com/cosmos/ibc-go/releases/tag/v2.0.2) - 2022-02-03
142+
143+
### Improvements
144+
145+
* (channel) [\#692](https://github.com/cosmos/ibc-go/pull/692) Minimize channel logging by only emitting the packet sequence, source port/channel, destination port/channel upon packet receives, acknowledgements and timeouts.
99146

100147
## [v2.0.2](https://github.com/cosmos/ibc-go/releases/tag/v2.0.2) - 2021-12-15
101148

@@ -138,6 +185,39 @@ Ref: https://keepachangelog.com/en/1.0.0/
138185

139186
* [\#384](https://github.com/cosmos/ibc-go/pull/384) Added `NegotiateAppVersion` method to `IBCModule` interface supported by a gRPC query service in `05-port`. This provides routing of requests to the desired application module callback, which in turn performs application version negotiation.
140187

188+
## [v1.4.0](https://github.com/cosmos/ibc-go/releases/tag/v1.4.0) - 2022-03-15
189+
190+
### Dependencies
191+
192+
* [\#851](https://github.com/cosmos/ibc-go/pull/851) Bump SDK version to v0.45.1
193+
194+
## [v1.3.0](https://github.com/cosmos/ibc-go/releases/tag/v1.3.0) - 2022-03-15
195+
196+
### Dependencies
197+
198+
* [\#1073](https://github.com/cosmos/ibc-go/pull/1073) Bump SDK version to v0.44.6
199+
* [\#948](https://github.com/cosmos/ibc-go/pull/948) Bump ics23/go to v0.7
200+
201+
### State Machine Breaking
202+
203+
* (transfer) [\#818](https://github.com/cosmos/ibc-go/pull/818) Error acknowledgements returned from Transfer `OnRecvPacket` now include a deterministic ABCI code and error message.
204+
205+
### Features
206+
207+
* [\#679](https://github.com/cosmos/ibc-go/pull/679) New CLI command `query ibc-transfer denom-hash <denom trace>` to get the denom hash for a denom trace; this might be useful for debug
208+
209+
### Bug Fixes
210+
211+
* (client) [\#941](https://github.com/cosmos/ibc-go/pull/941) Classify client states without consensus states as expired
212+
* (transfer) [\#978](https://github.com/cosmos/ibc-go/pull/978) Support base denoms with slashes in denom validation
213+
* (channel) [\#995](https://github.com/cosmos/ibc-go/pull/995) Call `packet.GetSequence()` rather than passing func in `AcknowledgePacket` log output
214+
215+
## [v1.2.6](https://github.com/cosmos/ibc-go/releases/tag/v1.2.6) - 2022-02-03
216+
217+
### Improvements
218+
219+
* (channel) [\#692](https://github.com/cosmos/ibc-go/pull/692) Minimize channel logging by only emitting the packet sequence, source port/channel, destination port/channel upon packet receives, acknowledgements and timeouts.
220+
141221
## [v1.2.5](https://github.com/cosmos/ibc-go/releases/tag/v1.2.5) - 2021-12-15
142222

143223
### Dependencies
@@ -195,6 +275,12 @@ Ref: https://keepachangelog.com/en/1.0.0/
195275

196276
* [\#386](https://github.com/cosmos/ibc-go/pull/386) Bump [tendermint](https://github.com/tendermint/tendermint) from v0.34.12 to v0.34.13.
197277

278+
## [v1.1.6](https://github.com/cosmos/ibc-go/releases/tag/v1.1.6) - 2022-01-25
279+
280+
### Improvements
281+
282+
* (channel) [\#692](https://github.com/cosmos/ibc-go/pull/692) Minimize channel logging by only emitting the packet sequence, source port/channel, destination port/channel upon packet receives, acknowledgements and timeouts.
283+
198284
## [v1.1.5](https://github.com/cosmos/ibc-go/releases/tag/v1.1.5) - 2021-12-15
199285

200286
### Dependencies

0 commit comments

Comments
 (0)