From 6f7942e4af38a0b84630deb837f2b7bccf53a62a Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 27 Feb 2026 08:18:49 +0000 Subject: [PATCH] doc --- documentation/releasenotes.rst | 5 +++++ example/ticker.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index ac6c67d..e47807f 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -3,6 +3,11 @@ Release Notes ============= +1.5.2 (UNRELEASED) +------------------ + +* ioc: promote DBE_ALARM only to also fetch value. + 1.5.1 (Feb 2026) ---------------- diff --git a/example/ticker.cpp b/example/ticker.cpp index 582fdf3..2d0b263 100644 --- a/example/ticker.cpp +++ b/example/ticker.cpp @@ -105,7 +105,7 @@ int main(int argc, char* argv[]) // words, doing // auto val = nt::NTScalar{TypeCode::UInt32}.create(); // won't work because it creates a different NTScalar instance. Either - // keep reusing the same Value, clone the existing Value, or keep aroud + // keep reusing the same Value, clone the existing Value, or keep around // the type instance and create values from there. auto val = initial.cloneEmpty();