diff --git a/configure/CONFIG_PVXS_VERSION b/configure/CONFIG_PVXS_VERSION index 834e4bc..a2cae94 100644 --- a/configure/CONFIG_PVXS_VERSION +++ b/configure/CONFIG_PVXS_VERSION @@ -1,6 +1,6 @@ PVXS_MAJOR_VERSION = 0 PVXS_MINOR_VERSION = 3 -PVXS_MAINTENANCE_VERSION = 1 +PVXS_MAINTENANCE_VERSION = 2 # Version range conditions in Makefiles # @@ -12,7 +12,8 @@ PVXS_MAINTENANCE_VERSION = 1 # # ifneq ($(PVXS_X_Y_Z),YES) # PVXS != X.Y.Z # -PVXS_0_3_1 = YES +PVXS_0_3_2 = YES +PVXS_0_3_1 = NO PVXS_0_3_0 = NO PVXS_0_2_2 = NO PVXS_0_2_1 = NO diff --git a/documentation/releasenotes.rst b/documentation/releasenotes.rst index 895aadc..3c95fbf 100644 --- a/documentation/releasenotes.rst +++ b/documentation/releasenotes.rst @@ -3,6 +3,9 @@ Release Notes ============= +0.3.2 (UNRELEASED) +------------------ + 0.3.1 (June 2022) ----------------- diff --git a/setup.py b/setup.py index 1ed5ebc..0d9aa22 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()