From 137995bcd633602c386b289307191fbd40ae9cbc Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Fri, 13 Feb 2026 15:32:44 +0100 Subject: [PATCH] CHANGELOG v0.36.1 --- CHANGELOG.md | 8 ++++++++ Makefile | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc073792c..5191bbee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.36.1 (2026-02-13) +### Features +- fix: Completely clean dns-discovery-name-server references [#3477](https://github.com/logos-messaging/logos-messaging-nim/pull/3477) + +### Bug fixes +- Fix avoid IndexDefect if DB error message is short [#3725](https://github.com/logos-messaging/logos-messaging-nim/pull/3725) +- Fix: detach partition [#3535](https://github.com/logos-messaging/logos-messaging-nim/pull/3535) + ## v0.36.0 (2025-06-20) ### Notes diff --git a/Makefile b/Makefile index d11f50bec..d6e96d44c 100644 --- a/Makefile +++ b/Makefile @@ -515,7 +515,7 @@ release-notes: -u $(shell id -u) \ docker.io/wakuorg/sv4git:latest \ release-notes |\ - sed -E 's@#([0-9]+)@[#\1](https://github.com/waku-org/nwaku/issues/\1)@g' + sed -E 's@#([0-9]+)@[#\1](https://github.com/logos-messaging/logos-messaging-nim/issues/\1)@g' # I could not get the tool to replace issue ids with links, so using sed for now, # asked here: https://github.com/bvieira/sv4git/discussions/101