From 9c4907bbf4e6ac3778f5c782269a55d53ba68cbe Mon Sep 17 00:00:00 2001 From: Pietro Bonfa Date: Fri, 13 Sep 2024 09:44:30 +0200 Subject: [PATCH] Releasing v0.0.4 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- python/LFC.py | 2 +- python/lfclib.c | 2 +- setup.py | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d100833..f5a7db7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v0.0.4 + +Bugfixes: + + - Fixed compatibility with numpy 2 + + +## v0.0.3 + + - Dropped Python2 support + + ## v0.0.2 Bugfixes: diff --git a/pyproject.toml b/pyproject.toml index 8f0341a..417ab12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mulfc" -version = "0.0.3" +version = "0.0.4" description = "Local Field Components (or lighting fast calculator) at muon sites for the muesr package." authors = [ {name = "Pietro Bonfa", email = "bonfus@gmail.com"}, diff --git a/python/LFC.py b/python/LFC.py index 374a2f3..088e1d7 100644 --- a/python/LFC.py +++ b/python/LFC.py @@ -160,7 +160,7 @@ def ACont(self,value): def get_version(): - return (0,0,2) + return (0,0,4) diff --git a/python/lfclib.c b/python/lfclib.c index 2e47101..a331923 100644 --- a/python/lfclib.c +++ b/python/lfclib.c @@ -6,7 +6,7 @@ * */ -#define MULFC_VERSION "0.0.3" +#define MULFC_VERSION "0.0.4" #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION diff --git a/setup.py b/setup.py index da4cb46..2874b9f 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ def build_extensions(self): build_ext.build_extensions(self) setup(name='mulfc', - version='0.0.3', + version='0.0.4', description=desc, long_description=long_desc, long_description_content_type="text/markdown",