diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index b91635514..7e8659790 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -3,8 +3,8 @@ Release Notes ============= -1.2.4 (UNRELEASED) ------------------- +1.2.4 (Oct 2023) +---------------- * data: Relax when assigning struct[] or union[] of similar types. * client: avoid assert() with invalid forced server name. @@ -14,12 +14,14 @@ Release Notes released promptly when that operation is ended. * server: relax post() after finish(). Return false instead of throwing ``std::logic_error``. * 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). + * Workaround for [db_cancel_event()](https://github.com/epics-base/epics-base/issues/423) bug. * 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. +* ioc: accept record._options.process as bool +* ioc: group avoid post() empty events 1.2.3 (Sept 2023) ----------------- diff --git a/setup.py b/setup.py index 80a74f1e3..ec3b9d1bf 100755 --- a/setup.py +++ b/setup.py @@ -692,7 +692,7 @@ def define_DSOS(self): pvxs_ver = '%(PVXS_MAJOR_VERSION)s.%(PVXS_MINOR_VERSION)s.%(PVXS_MAINTENANCE_VERSION)s'%pvxsversion -pvxs_ver += 'a3' +#pvxs_ver += 'a1' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read()