From b5ecf5dae4ef14fb5313076fa714211830536f00 Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Fri, 19 Nov 2021 07:15:28 -0700 Subject: [PATCH] Bump to 1.3.2 --- docs/conf.py | 2 +- kuibit/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_kuibit.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 29fa7760..ad0e64cd 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.1' +release = '1.3.2' # -- General configuration --------------------------------------------------- diff --git a/kuibit/__init__.py b/kuibit/__init__.py index 51d8b8dd..889e23e9 100755 --- a/kuibit/__init__.py +++ b/kuibit/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = "1.3.1" +__version__ = "1.3.2" __bibtex__ = """\ @article{kuibit, diff --git a/pyproject.toml b/pyproject.toml index b2a88264..88e74096 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kuibit" -version = "1.3.1" +version = "1.3.2" 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 ba693986..aacd8e00 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.1") + self.assertEqual(__version__, "1.3.2") def test_bibtex(self): self.assertIn("Bozzola", __bibtex__)