Skip to content

Commit

Permalink
Releasing v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bonfus committed Sep 13, 2024
1 parent dcc0df0 commit 9c4907b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## v0.0.4

Bugfixes:

- Fixed compatibility with numpy 2


## v0.0.3

- Dropped Python2 support


## v0.0.2

Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion python/LFC.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def ACont(self,value):


def get_version():
return (0,0,2)
return (0,0,4)



Expand Down
2 changes: 1 addition & 1 deletion python/lfclib.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 9c4907b

Please sign in to comment.