This commit is contained in:
Michael Davidsaver
2023-09-23 10:50:20 -07:00
parent 9732281371
commit 304fc9b8a6
3 changed files with 17 additions and 3 deletions
+3 -2
View File
@@ -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
+13
View File
@@ -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)
-----------------
+1 -1
View File
@@ -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()