Skip to content

Commit

Permalink
Bump to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbozzolo committed Apr 22, 2022
1 parent cd362f6 commit b116f4f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Version 1.3.4 (Under Development)
## Version 1.3.4 (22 April 2022)

#### General
- Improvements to documentation and docstrings
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
# -- Project information -----------------------------------------------------

project = 'kuibit'
copyright = '2020-2021, Gabriele Bozzola'
copyright = '2020-2022, Gabriele Bozzola'
author = 'Gabriele Bozzola'

# The full version, including alpha/beta/rc tags
release = '1.3.3'
release = '1.3.4'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion kuibit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__version__ = "1.3.3"
__version__ = "1.3.4"

__bibtex__ = """\
@article{kuibit,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kuibit"
version = "1.3.3"
version = "1.3.4"
description = "Read and analyze Einstein Toolkit simulations."
authors = ["Gabriele Bozzola <gabrielebozzola@arizona.edu>"]
maintainers = ["Gabriele Bozzola <gabrielebozzola@arizona.edu>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_kuibit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class Testkuibit(unittest.TestCase):
def test_version(self):
self.assertEqual(__version__, "1.3.3")
self.assertEqual(__version__, "1.3.4")

def test_bibtex(self):
self.assertIn("Bozzola", __bibtex__)

0 comments on commit b116f4f

Please sign in to comment.