From 5dbb623fd376ecd49fea298b7a5983da5fe4fa56 Mon Sep 17 00:00:00 2001 From: Andrew Low Date: Tue, 1 Oct 2024 09:13:45 -0400 Subject: [PATCH] release v0.4.0 --- .changelog/646.feature.md | 1 - .changelog/691.feature.md | 1 - .changelog/704.bugfix.md | 1 - .changelog/728.internal.md | 1 - .changelog/745.trivial.md | 1 - .changelog/747.feature.md | 1 - .changelog/748.feature.md | 1 - .changelog/749.bugfix.md | 1 - .changelog/750.trivial.md | 1 - .changelog/752.internal.md | 1 - .changelog/754.trivial.md | 1 - .punch_version.py | 4 ++-- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 13 files changed, 34 insertions(+), 13 deletions(-) delete mode 100644 .changelog/646.feature.md delete mode 100644 .changelog/691.feature.md delete mode 100644 .changelog/704.bugfix.md delete mode 100644 .changelog/728.internal.md delete mode 100644 .changelog/745.trivial.md delete mode 100644 .changelog/747.feature.md delete mode 100644 .changelog/748.feature.md delete mode 100644 .changelog/749.bugfix.md delete mode 100644 .changelog/750.trivial.md delete mode 100644 .changelog/752.internal.md delete mode 100644 .changelog/754.trivial.md diff --git a/.changelog/646.feature.md b/.changelog/646.feature.md deleted file mode 100644 index 2afce41a2..000000000 --- a/.changelog/646.feature.md +++ /dev/null @@ -1 +0,0 @@ -consensus: save block metadata diff --git a/.changelog/691.feature.md b/.changelog/691.feature.md deleted file mode 100644 index 717f368d2..000000000 --- a/.changelog/691.feature.md +++ /dev/null @@ -1 +0,0 @@ -ERC-20 token prices diff --git a/.changelog/704.bugfix.md b/.changelog/704.bugfix.md deleted file mode 100644 index 7e5c569cd..000000000 --- a/.changelog/704.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -storage: nil out transaction .Error on unknown result diff --git a/.changelog/728.internal.md b/.changelog/728.internal.md deleted file mode 100644 index f92b3f5e8..000000000 --- a/.changelog/728.internal.md +++ /dev/null @@ -1 +0,0 @@ -db: consolidate migrations diff --git a/.changelog/745.trivial.md b/.changelog/745.trivial.md deleted file mode 100644 index e60649d5a..000000000 --- a/.changelog/745.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Wording update for known addresses, added testnet faucet address diff --git a/.changelog/747.feature.md b/.changelog/747.feature.md deleted file mode 100644 index 0f9790234..000000000 --- a/.changelog/747.feature.md +++ /dev/null @@ -1 +0,0 @@ -Oasis-style encryption envelope diff --git a/.changelog/748.feature.md b/.changelog/748.feature.md deleted file mode 100644 index ef3094f84..000000000 --- a/.changelog/748.feature.md +++ /dev/null @@ -1 +0,0 @@ -runtime: store NULL error module/code when no error diff --git a/.changelog/749.bugfix.md b/.changelog/749.bugfix.md deleted file mode 100644 index df5ce6ac4..000000000 --- a/.changelog/749.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -consensus/api: Handle duplicated consensus transaction hashes diff --git a/.changelog/750.trivial.md b/.changelog/750.trivial.md deleted file mode 100644 index 8da3d39a4..000000000 --- a/.changelog/750.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Add subcall precompile to named accounts diff --git a/.changelog/752.internal.md b/.changelog/752.internal.md deleted file mode 100644 index bd7f48ed6..000000000 --- a/.changelog/752.internal.md +++ /dev/null @@ -1 +0,0 @@ -analyzer: track staking event history diff --git a/.changelog/754.trivial.md b/.changelog/754.trivial.md deleted file mode 100644 index 5d9a268f7..000000000 --- a/.changelog/754.trivial.md +++ /dev/null @@ -1 +0,0 @@ -openapi: fix typos diff --git a/.punch_version.py b/.punch_version.py index 64d4cba11..48dd2e1ab 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ major = 0 -minor = 3 -patch = 3 +minor = 4 +patch = 0 diff --git a/CHANGELOG.md b/CHANGELOG.md index bf0a4d3f3..e60bc7a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,38 @@ The format is inspired by [Keep a Changelog]. +## 0.4.0 (2024-10-01) + +### Features + +- consensus: save block metadata + ([#646](https://github.com/oasisprotocol/nexus/issues/646)) + +- ERC-20 token prices + ([#691](https://github.com/oasisprotocol/nexus/issues/691)) + +- Oasis-style encryption envelope + ([#747](https://github.com/oasisprotocol/nexus/issues/747)) + +- runtime: store NULL error module/code when no error + ([#748](https://github.com/oasisprotocol/nexus/issues/748)) + +### Bug Fixes and Improvements + +- storage: nil out transaction .Error on unknown result + ([#704](https://github.com/oasisprotocol/nexus/issues/704)) + +- consensus/api: Handle duplicated consensus transaction hashes + ([#749](https://github.com/oasisprotocol/nexus/issues/749)) + +### Internal Changes + +- db: consolidate migrations + ([#728](https://github.com/oasisprotocol/nexus/issues/728)) + +- analyzer: track staking event history + ([#752](https://github.com/oasisprotocol/nexus/issues/752)) + ## 0.3.3 (2024-08-28) ### Features