From 304fc9b8a6b11aa3a81f257a062f2c10a5a56e2c Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sat, 23 Sep 2023 07:36:02 -0700 Subject: [PATCH] 1.2.4a1 --- configure/CONFIG_PVXS_VERSION | 5 +++-- documentation/releasenotes.rst | 13 +++++++++++++ setup.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/configure/CONFIG_PVXS_VERSION b/configure/CONFIG_PVXS_VERSION index e893e70..a10b413 100644 --- a/configure/CONFIG_PVXS_VERSION +++ b/configure/CONFIG_PVXS_VERSION @@ -1,6 +1,6 @@ PVXS_MAJOR_VERSION = 1 PVXS_MINOR_VERSION = 2 -PVXS_MAINTENANCE_VERSION = 3 +PVXS_MAINTENANCE_VERSION = 4 # Version range conditions in Makefiles # @@ -12,7 +12,8 @@ PVXS_MAINTENANCE_VERSION = 3 # # ifneq ($(PVXS_X_Y_Z),YES) # PVXS != X.Y.Z # -PVXS_1_2_3 = YES +PVXS_1_2_4 = YES +PVXS_1_2_3 = NO PVXS_1_2_2 = NO PVXS_1_2_1 = NO PVXS_1_2_0 = NO diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index fb40b00..ed9fa5b 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -3,6 +3,19 @@ Release Notes ============= +1.2.4 (UNRELEASED) +------------------ + +* client: avoid assert() with invalid forced server name. +* client: propagate exception during early op. setup. +* ioc: ensure db_cancel_event() before ~MonitorControlOp + * QSRV also effected by bug in [db_cancel_event()](https://github.com/epics-base/epics-base/issues/423). +* ioc: Fix typo preventing processing of DBR_STRING fields. +* ioc: fix group put always `dbProcess()`. +* ioc: fix block=true to DBF_ENUM. +* ioc: actually require +putorder to PUT. +* ioc: group put w/o effect is an error. + 1.2.3 (Sept 2023) ----------------- diff --git a/setup.py b/setup.py index ec3b9d1..7a910e3 100755 --- a/setup.py +++ b/setup.py @@ -692,7 +692,7 @@ build_dso.sub_commands.extend([ pvxs_ver = '%(PVXS_MAJOR_VERSION)s.%(PVXS_MINOR_VERSION)s.%(PVXS_MAINTENANCE_VERSION)s'%pvxsversion -#pvxs_ver += 'a1' +pvxs_ver += 'a1' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read()