From 2f8352401c747f6ef55814008af707dd89914fa7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 04:55:29 +0000 Subject: [PATCH] chore: prepare release 0.7.1 --- .changeset/add_support_for_block_pruning.md | 7 ------- .changeset/automate_releases.md | 5 ----- ..._block_with_empty_block_id_from_chainmanager.md | 5 ----- CHANGELOG.md | 14 ++++++++++++++ go.mod | 2 +- 5 files changed, 15 insertions(+), 18 deletions(-) delete mode 100644 .changeset/add_support_for_block_pruning.md delete mode 100644 .changeset/automate_releases.md delete mode 100644 .changeset/fix_panic_when_fetching_block_with_empty_block_id_from_chainmanager.md create mode 100644 CHANGELOG.md diff --git a/.changeset/add_support_for_block_pruning.md b/.changeset/add_support_for_block_pruning.md deleted file mode 100644 index 95fe1ad..0000000 --- a/.changeset/add_support_for_block_pruning.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: minor ---- - -# Add support for block pruning - -The chain manager can now automatically delete blocks after a configurable number of confirmations. Note that this does not apply retroactively. diff --git a/.changeset/automate_releases.md b/.changeset/automate_releases.md deleted file mode 100644 index d5fea6e..0000000 --- a/.changeset/automate_releases.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -# Automate releases diff --git a/.changeset/fix_panic_when_fetching_block_with_empty_block_id_from_chainmanager.md b/.changeset/fix_panic_when_fetching_block_with_empty_block_id_from_chainmanager.md deleted file mode 100644 index ba2f304..0000000 --- a/.changeset/fix_panic_when_fetching_block_with_empty_block_id_from_chainmanager.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -# Fix panic when fetching block with empty block id from ChainManager diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2a7a1eb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## 0.7.1 (2024-12-11) + +### Features + +#### Add support for block pruning + +The chain manager can now automatically delete blocks after a configurable number of confirmations. Note that this does not apply retroactively. + +### Fixes + +- remove duration param from RPCWrite impl +- Return 0 for nonexistent accounts +- Automate releases +- Fix panic when fetching block with empty block id from ChainManager diff --git a/go.mod b/go.mod index dcbed28..1f4e0ac 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go.sia.tech/coreutils // v0.7.0 +module go.sia.tech/coreutils // v0.7.1 go 1.23.1