From 647775efec7bf3cbaaef79e03881cfa23662598b Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Wed, 21 Aug 2024 16:34:10 -0700 Subject: [PATCH] 1.3.2a2 --- documentation/releasenotes.rst | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index a87282a7..94a572d8 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -8,8 +8,10 @@ Release Notes * client: Avoid FD leak on failed connect() * Correctly set TCP_NODELAY on winsock +* Fix copy of Any/Union * ioc: Workaround asTrapWrite clobbering dbChannel * ioc: ACF fix write permit when groups are present +* server: correctly adjudicate collision bind() of specific port 1.3.1 (Dec 2023) ---------------- diff --git a/setup.py b/setup.py index d88e0dd5..f31db17b 100755 --- a/setup.py +++ b/setup.py @@ -696,7 +696,7 @@ def define_DSOS(self): pvxs_ver = '%(PVXS_MAJOR_VERSION)s.%(PVXS_MINOR_VERSION)s.%(PVXS_MAINTENANCE_VERSION)s'%pvxsversion -pvxs_ver += 'a1' +pvxs_ver += 'a2' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read()