From 05a164fb3faec5e2bc9899661f89661bce0fbcdf Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Tue, 5 Jul 2022 06:53:57 -0700 Subject: [PATCH] Bump to 1.3.6 --- NEWS.md | 2 +- docs/conf.py | 2 +- kuibit/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_kuibit.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index 743072f5..baac6060 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # Changelog -## Version 1.3.6 (Under Development) +## Version 1.3.6 (5 July 2022) #### Bug fixes - Fix time incorrectly read in ASCII data (thanks @AuroraDysis, diff --git a/docs/conf.py b/docs/conf.py index 265c7c01..121be70a 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.5' +release = '1.3.6' # -- General configuration --------------------------------------------------- diff --git a/kuibit/__init__.py b/kuibit/__init__.py index ba4c7e91..4912e5d1 100755 --- a/kuibit/__init__.py +++ b/kuibit/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = "1.3.5" +__version__ = "1.3.6" __bibtex__ = """\ @article{kuibit, diff --git a/pyproject.toml b/pyproject.toml index aec6a30b..bf82dfed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kuibit" -version = "1.3.5" +version = "1.3.6" 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 008f33fd..aa462fff 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.5") + self.assertEqual(__version__, "1.3.6") def test_bibtex(self): self.assertIn("Bozzola", __bibtex__)