From 7d94f98027a95b913fbefd224371a848ed9d38bd Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Mon, 30 Sep 2024 11:54:24 +0100 Subject: [PATCH] 1.3.2 --- documentation/releasenotes.rst | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index 94a572d8..70b9359e 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -3,9 +3,10 @@ Release Notes ============= -1.3.2 (UNRELEASED) +1.3.2 (Oct 2024) ------------------ +* Python 3.12 support * client: Avoid FD leak on failed connect() * Correctly set TCP_NODELAY on winsock * Fix copy of Any/Union diff --git a/setup.py b/setup.py index f31db17b..60b88c26 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 += 'a2' +#pvxs_ver += 'a2' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read()