From 079eeeb5f6456b3f27d2af6da1feccca98ac8b59 Mon Sep 17 00:00:00 2001 From: Ollie Copping Date: Thu, 1 Aug 2024 10:24:37 +0100 Subject: [PATCH] Release 1.4.0a1 --- configure/CONFIG_PVXS_VERSION | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/configure/CONFIG_PVXS_VERSION b/configure/CONFIG_PVXS_VERSION index 41d4f69ac..8d699b940 100644 --- a/configure/CONFIG_PVXS_VERSION +++ b/configure/CONFIG_PVXS_VERSION @@ -1,6 +1,6 @@ PVXS_MAJOR_VERSION = 1 -PVXS_MINOR_VERSION = 3 -PVXS_MAINTENANCE_VERSION = 1 +PVXS_MINOR_VERSION = 4 +PVXS_MAINTENANCE_VERSION = 0 # Version range conditions in Makefiles # @@ -12,7 +12,8 @@ PVXS_MAINTENANCE_VERSION = 1 # # ifneq ($(PVXS_X_Y_Z),YES) # PVXS != X.Y.Z # -PVXS_1_3_1 = YES +PVXS_1_4_0 = YES +PVXS_1_3_1 = NO PVXS_1_3_0 = NO PVXS_1_2_4 = NO PVXS_1_2_3 = NO diff --git a/setup.py b/setup.py index 6d4f4de1b..d88e0dd50 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 += 'a1' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as F: long_description = F.read()