From 417c3fe3303be3b1ca06c7b2f2d862f384b9ff7b Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Thu, 4 Nov 2021 19:55:43 -0700 Subject: [PATCH] Bump to 1.3.1 --- NEWS.md | 6 ++++++ docs/conf.py | 2 +- kuibit/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_kuibit.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index e8cd4098..1dbeae29 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ # Changelog +## Version 1.3.1 (4 November 2021) + +#### Bug fixes + +- `h5py >= 3` is now supported + ## Version 1.3.0 (28 October 2021) #### `SimDir` can now be cached in pickle files diff --git a/docs/conf.py b/docs/conf.py index ed12b83c..29fa7760 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Gabriele Bozzola' # The full version, including alpha/beta/rc tags -release = '1.3.0' +release = '1.3.1' # -- General configuration --------------------------------------------------- diff --git a/kuibit/__init__.py b/kuibit/__init__.py index 6d79feab..51d8b8dd 100755 --- a/kuibit/__init__.py +++ b/kuibit/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = "1.3.0" +__version__ = "1.3.1" __bibtex__ = """\ @article{kuibit, diff --git a/pyproject.toml b/pyproject.toml index eb287a6c..e31438c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kuibit" -version = "1.3.0" +version = "1.3.1" description = "Read and analyze Einstein Toolkit simulations." authors = ["Gabriele Bozzola "] maintainers = ["Gabriele Bozzola "] diff --git a/tests/test_kuibit.py b/tests/test_kuibit.py index 0bd2fb5d..ba693986 100755 --- a/tests/test_kuibit.py +++ b/tests/test_kuibit.py @@ -22,7 +22,7 @@ class Testkuibit(unittest.TestCase): def test_version(self): - self.assertEqual(__version__, "1.3.0") + self.assertEqual(__version__, "1.3.1") def test_bibtex(self): self.assertIn("Bozzola", __bibtex__)