From 525a3f4e61bae8a7a2fa28f697b490cc6c475d74 Mon Sep 17 00:00:00 2001 From: jborbely Date: Fri, 16 Jun 2023 17:14:59 +1200 Subject: [PATCH] release v0.10.0 --- CHANGES.rst | 4 ++-- msl/loadlib/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 064e29b..4f203d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,8 +2,8 @@ Changelog ========= -Version 0.10.0 (in development) -=============================== +Version 0.10.0 (2023-06-16) +=========================== This release will be the last to support Python 2.7, 3.5, 3.6 and 3.7 * The 32-bit server is frozen with the following versions diff --git a/msl/loadlib/__init__.py b/msl/loadlib/__init__.py index dfc5d76..16e4c19 100644 --- a/msl/loadlib/__init__.py +++ b/msl/loadlib/__init__.py @@ -9,11 +9,11 @@ __author__ = 'Measurement Standards Laboratory of New Zealand' __copyright__ = '\xa9 2017 - 2023, ' + __author__ -__version__ = '0.10.0.dev0' +__version__ = '0.10.0' _v = re.search(r'(\d+)\.(\d+)\.(\d+)[.-]?(.*)', __version__).groups() -version_info = namedtuple('version_info', 'major minor micro releaselevel')(int(_v[0]), int(_v[1]), int(_v[2]), _v[3]) +version_info = namedtuple('version_info', 'major minor micro releaselevel')(int(_v[0]), int(_v[1]), int(_v[2]), 'final') """:obj:`~collections.namedtuple`: Contains the version information as a (major, minor, micro, releaselevel) tuple.""" if not hasattr(sys, 'coinit_flags'):