Skip to content

Commit

Permalink
Bump to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbozzolo committed Nov 5, 2021
1 parent 692c45b commit 417c3fe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 1.3.1 (4 November 2021)

#### Bug fixes

- `h5py >= 3` is now supported

## Version 1.3.0 (28 October 2021)

#### `SimDir` can now be cached in pickle files
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Gabriele Bozzola'

# The full version, including alpha/beta/rc tags
release = '1.3.0'
release = '1.3.1'


# -- 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.0"
__version__ = "1.3.1"

__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.0"
version = "1.3.1"
description = "Read and analyze Einstein Toolkit simulations."
authors = ["Gabriele Bozzola <[email protected]>"]
maintainers = ["Gabriele Bozzola <[email protected]>"]
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.0")
self.assertEqual(__version__, "1.3.1")

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

0 comments on commit 417c3fe

Please sign in to comment.