diff --git a/NEWS.md b/NEWS.md index 4dde36bd..910aa420 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # Changelog -## Version 1.1.1 (Under development) +## Version 1.1.1 (22 April 2022) #### Bug fixes - Fixed corner in `__str__` in `UniformGrid` diff --git a/docs/conf.py b/docs/conf.py index 4b5d8ba2..95ac9835 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.1.0' +release = '1.1.1' # -- General configuration --------------------------------------------------- diff --git a/kuibit/__init__.py b/kuibit/__init__.py index 8539c31e..f395c860 100755 --- a/kuibit/__init__.py +++ b/kuibit/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = "1.1.0" +__version__ = "1.1.1" __bibtex__ = """\ @article{kuibit, diff --git a/pyproject.toml b/pyproject.toml index 30bc060f..68997b32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kuibit" -version = "1.1.0" +version = "1.1.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 57a93c38..391b488a 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.1.0") + self.assertEqual(__version__, "1.1.1") def test_bibtex(self): self.assertIn("Gabriele Bozzola", __bibtex__)