diff --git a/biscuit/__init__.py b/biscuit/__init__.py index b14ab3fd..e3538605 100644 --- a/biscuit/__init__.py +++ b/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.26.0' +__version__ = '2.26.1' __version_info__ = tuple([ int(num) for num in __version__.split('.')]) # For tests to run successfully diff --git a/pyproject.toml b/pyproject.toml index c5025e21..ccf16eb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit" -version = "2.26.0" +version = "2.26.1" description = "The uncompromising code editor" authors = ["Billy "] license = "MIT" diff --git a/tests/test_version.py b/tests/test_version.py index 6a40180a..a7221636 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '2.26.0' + assert __version__ == '2.26.1'