Skip to content

Commit

Permalink
chore: retract v0.21.x line (#812)
Browse files Browse the repository at this point in the history
(cherry picked from commit c364b65)
  • Loading branch information
julienrbrt authored and mergify[bot] committed Aug 10, 2023
1 parent bcdaadf commit 9b656f2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .mergify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ pull_request_rules:
backport:
branches:
- release/v0.20.x
- name: backport patches to v0.21.x branch
conditions:
- base=master
- label=backport/v0.21.x
actions:
backport:
branches:
- release/v0.21.x
- name: backport patches to v1.x branch
conditions:
- base=master
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ In Ethereum, the analog is [Patricia tries](http://en.wikipedia.org/wiki/Radix_t
| -------------------------------------------------------------- | -------------------------------------------------------- | ---------------- |
| [v0.19.x](https://github.com/cosmos/iavl/tree/release/v0.19.x) | [`tm-db`](https://github.com/tendermint/tm-db) | v0.45.x, v0.46.x |
| [v0.20.x](https://github.com/cosmos/iavl/tree/release/v0.20.x) | [`cometbft-db`](https://github.com/cometbft/cometbft-db) | v0.47.x |
| [v0.21.x](https://github.com/cosmos/iavl/tree/release/v0.21.x) | [`cosmos-db`](https://github.com/cosmos/cosmos-db) | - |
| [v1.x.x](https://github.com/cosmos/iavl/tree/release/v1.x.x) | [`cosmos-db`](https://github.com/cosmos/cosmos-db) | - |

NOTE: In the past, a v0.21.x release was published, but never used in production. It was retracted to avoid confusion.
2 changes: 1 addition & 1 deletion export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func setupExportTreeRandom(t *testing.T) *ImmutableTree {

// setupExportTreeSized sets up a single-version tree with a given number
// of randomly generated key/value pairs, useful for benchmarking.
func setupExportTreeSized(t require.TestingT, treeSize int) *ImmutableTree { //nolint:unparam
func setupExportTreeSized(t require.TestingT, treeSize int) *ImmutableTree {

Check failure on line 129 in export_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

`setupExportTreeSized` - `treeSize` always receives `4096` (unparam)
const (
randSeed = 49872768940 // For deterministic tests
keySize = 16
Expand Down
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,9 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)

retract v0.18.0
retract (
v0.18.0
// This version is not used by the Cosmos SDK and adds a maintenance burden.
// Use v1.x.x instead.
[v0.21.0, v0.21.2]
)

0 comments on commit 9b656f2

Please sign in to comment.