Skip to content

Commit

Permalink
release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Jun 16, 2023
1 parent fd0b212 commit 525a3f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions msl/loadlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'):
Expand Down

0 comments on commit 525a3f4

Please # to comment.