From 359b75dd8501c6ad20b0a59302e1a0ad7eb279c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadej=20Jane=C5=BE?= Date: Thu, 10 Jun 2021 16:19:01 +0200 Subject: [PATCH] changelog: Assemble changes for 21.2.1 release --- .changelog/4009.bugfix.md | 1 - .changelog/4010.bugfix.2.md | 1 - .changelog/4010.bugfix.md | 5 ----- .changelog/4014.feature.md | 4 ---- .punch_version.py | 2 +- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 6 files changed, 32 insertions(+), 12 deletions(-) delete mode 100644 .changelog/4009.bugfix.md delete mode 100644 .changelog/4010.bugfix.2.md delete mode 100644 .changelog/4010.bugfix.md delete mode 100644 .changelog/4014.feature.md diff --git a/.changelog/4009.bugfix.md b/.changelog/4009.bugfix.md deleted file mode 100644 index 49fb8ab2b75..00000000000 --- a/.changelog/4009.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -go/oasis-net-runner: Always honor fixture.default.setup_runtimes diff --git a/.changelog/4010.bugfix.2.md b/.changelog/4010.bugfix.2.md deleted file mode 100644 index d6744549111..00000000000 --- a/.changelog/4010.bugfix.2.md +++ /dev/null @@ -1 +0,0 @@ -go/common/badger: Fix v2->v3 migration for managed mode diff --git a/.changelog/4010.bugfix.md b/.changelog/4010.bugfix.md deleted file mode 100644 index 789b529dd0b..00000000000 --- a/.changelog/4010.bugfix.md +++ /dev/null @@ -1,5 +0,0 @@ -go/storage/mkvs/checkpoint: Checkpoint in descending order - -Previously the checkpointer would generate checkpoints in ascending order -which meant that it could generate many checkpoints only to garbage collect -them in the next step. diff --git a/.changelog/4014.feature.md b/.changelog/4014.feature.md deleted file mode 100644 index 3486c91e1de..00000000000 --- a/.changelog/4014.feature.md +++ /dev/null @@ -1,4 +0,0 @@ -go/staking: Add DebondingStartEscrowEvent - -This makes it easier to reason about the debonded amounts, both in shares and -in base units. diff --git a/.punch_version.py b/.punch_version.py index 17b8a8ab5d6..927519002f5 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '21' minor = 2 -micro = 0 +micro = 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b25aad1bfc..da1fbf3c947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,37 @@ The format is inspired by [Keep a Changelog]. +## 21.2.1 (2021-06-10) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 4.0.0 | +| Runtime Host | 3.0.0 | +| Runtime Committee | 2.0.0 | + +### Features + +- go/staking: Add DebondingStartEscrowEvent + ([#4014](https://github.com/oasisprotocol/oasis-core/issues/4014)) + + This makes it easier to reason about the debonded amounts, both in shares and + in base units. + +### Bug Fixes + +- go/oasis-net-runner: Always honor fixture.default.setup_runtimes + ([#4009](https://github.com/oasisprotocol/oasis-core/issues/4009)) + +- go/common/badger: Fix v2->v3 migration for managed mode + ([#4010](https://github.com/oasisprotocol/oasis-core/issues/4010)) + +- go/storage/mkvs/checkpoint: Checkpoint in descending order + ([#4010](https://github.com/oasisprotocol/oasis-core/issues/4010)) + + Previously the checkpointer would generate checkpoints in ascending order + which meant that it could generate many checkpoints only to garbage collect + them in the next step. + ## 21.2 (2021-06-07) | Protocol | Version |