Skip to content

Commit

Permalink
Bump to version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbozzolo committed May 2, 2023
1 parent a49de2a commit ab67e9f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
@@ -1,6 +1,6 @@
# Changelog

## Version 1.4.0 (Under Development)
## Version 1.4.0 (2 May 2023)

#### General
- Minimum version of Python required is now 3.7. `kuibit` now explicitly follows
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -23,7 +23,7 @@
author = "Gabriele Bozzola"

# The full version, including alpha/beta/rc tags
release = "1.4.0-dev2"
release = "1.4.0"


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -87,7 +87,7 @@
],
}

html_context = {"versions": ["1.3.6"]}
html_context = {"versions": ["1.3.6", "1.4.0"]}

html_theme_options = {
"maincolor": "#228B22",
Expand Down
2 changes: 1 addition & 1 deletion kuibit/__init__.py
Expand Up @@ -23,7 +23,7 @@
# skipcq: PY-W2000
from kuibit.simdir import SimDir # noqa: 401

__version__ = "1.4.0-dev2"
__version__ = "1.4.0"

__bibtex__ = """\
@article{kuibit,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kuibit"
version = "1.4.0-dev2"
version = "1.4.0"
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
Expand Up @@ -22,7 +22,7 @@

class Testkuibit(unittest.TestCase):
def test_version(self):
self.assertEqual(__version__, "1.4.0-dev2")
self.assertEqual(__version__, "1.4.0")

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

0 comments on commit ab67e9f

Please sign in to comment.