diff --git a/CHANGES.rst b/CHANGES.rst index c8e4d6f2..40d19f24 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Changelog ~~~~~~~~~ +1.14.2 +====== +Date: 20.09.2023 + +- fix error in ``get_copyright_notice`` due to backward incompatible API + changes of ``importlib_resources``. This function now requires py>=3.7, + as supporting it for lower python versions would be unwarranted effort. + + 1.14.1 ====== Date: 28.08.2023 diff --git a/src/cpymad/__init__.py b/src/cpymad/__init__.py index 18165a4a..27cfc6c2 100644 --- a/src/cpymad/__init__.py +++ b/src/cpymad/__init__.py @@ -4,7 +4,7 @@ __title__ = 'cpymad' -__version__ = '1.14.1' +__version__ = '1.14.2' __summary__ = 'Cython binding to MAD-X' __uri__ = 'https://github.com/hibtc/cpymad'