Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: retract v0.21.x line #812

Merged
merged 3 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {
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 @@ -47,4 +47,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]
)