From 10126df3503f54727bc436df89af02b789fb6f57 Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Sun, 16 Jun 2024 16:17:26 -0700 Subject: [PATCH] Bump to 1.5.0 --- docs/conf.py | 4 ++-- docs/features.rst | 2 +- pyproject.toml | 2 +- tests/test_kuibit.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c1f488a6..e16bcf75 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.4.0" +release = "1.5.0" # -- General configuration --------------------------------------------------- @@ -87,7 +87,7 @@ ], } -html_context = {"versions": ["1.3.6", "1.4.0", "1.4.1"]} +html_context = {"versions": ["1.3.6", "1.4.0", "1.4.1", "1.5.0"]} html_theme_options = { "maincolor": "#228B22", diff --git a/docs/features.rst b/docs/features.rst index 6210668c..69ff1cbf 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -10,7 +10,7 @@ example, if an objects smells like a dictionary, you should be able to ask for ``keys()``, or iteratate over it, or see if an element is contained with the ``in`` keyword. -Here we review all the available features as of version ``1.4.0``. +Here we review all the available features as of version ``1.5.0``. General ------- diff --git a/pyproject.toml b/pyproject.toml index a9d6caa1..2ec311a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kuibit" -version = "1.4.0" +version = "1.5.0" 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 fdf55897..cce3bb52 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.4.0") + self.assertEqual(__version__, "1.5.0") def test_bibtex(self): self.assertIn("Bozzola", __bibtex__)