From 16a0c5390a9ac04fe6d276957c1cc0375d7d4271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gl=C3=A4=C3=9Fle?= Date: Wed, 20 Sep 2023 20:47:44 +0200 Subject: [PATCH] Release cpymad v1.14.2 - 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. --- CHANGES.rst | 9 +++++++++ src/cpymad/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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'