From f6d2e402bc2b505faa1c7a5ae164a4dd2b4749ca Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Wed, 22 Mar 2023 08:28:08 -0700 Subject: [PATCH] 1.1.3 --- documentation/releasenotes.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index 5464237..452911f 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -12,7 +12,7 @@ Release Notes * Fix `pvxs::Value::nmembers` which erroneously returned ``0`` for ``StructA`` and ``UnionA``. * Fix `pvxs::Value::unmark` where ``parent=true`` caused corruption. * Change to "magic" automatic ``Union`` member selection during assignment. -* Fix `pvxs::shared_array::convertTo`` converting ``Float64`` to ``Float32`` caused corruption. +* Fix `pvxs::shared_array::convertTo` converting ``Float64`` to ``Float32`` caused corruption. * Fix TypeDef(const Value& val) for Union/UnionA/StructA * Fix unsigned handling * server: rework cleanup of connection, channel, and operation diff --git a/setup.py b/setup.py index 36d9c12..e9d4505 100755 --- a/setup.py +++ b/setup.py @@ -624,7 +624,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()