From eb3a70e1b5c25009cfca1a3419248d7ceb178079 Mon Sep 17 00:00:00 2001 From: Yangyang Li Date: Mon, 30 Oct 2023 09:35:52 -0500 Subject: [PATCH] chore: Bump version to 1.1.4 --- docs/_templates/base.html | 2 +- poetry.lock | 12 ++++++------ pyproject.toml | 2 +- src/pxblat/__init__.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/_templates/base.html b/docs/_templates/base.html index fca42f12..faa058b4 100644 --- a/docs/_templates/base.html +++ b/docs/_templates/base.html @@ -1,6 +1,6 @@ {% extends "!base.html" %} {% block announce %}

Please Cite Me - v1.1.3 + v1.1.4

{% endblock %} diff --git a/poetry.lock b/poetry.lock index 20e3db7c..ea302f1a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2917,13 +2917,13 @@ files = [ [[package]] name = "traitlets" -version = "5.12.0" +version = "5.13.0" description = "Traitlets Python configuration system" optional = false python-versions = ">=3.8" files = [ - {file = "traitlets-5.12.0-py3-none-any.whl", hash = "sha256:81539f07f7aebcde2e4b5ab76727f53eabf18ad155c6ed7979a681411602fa47"}, - {file = "traitlets-5.12.0.tar.gz", hash = "sha256:833273bf645d8ce31dcb613c56999e2e055b1ffe6d09168a164bcd91c36d5d35"}, + {file = "traitlets-5.13.0-py3-none-any.whl", hash = "sha256:baf991e61542da48fe8aef8b779a9ea0aa38d8a54166ee250d5af5ecf4486619"}, + {file = "traitlets-5.13.0.tar.gz", hash = "sha256:9b232b9430c8f57288c1024b34a8f0251ddcc47268927367a0dd3eeaca40deb5"}, ] [package.extras] @@ -3052,13 +3052,13 @@ tests = ["pytest", "pytest-cov"] [[package]] name = "wheel" -version = "0.41.2" +version = "0.41.3" description = "A built-package format for Python" optional = false python-versions = ">=3.7" files = [ - {file = "wheel-0.41.2-py3-none-any.whl", hash = "sha256:75909db2664838d015e3d9139004ee16711748a52c8f336b52882266540215d8"}, - {file = "wheel-0.41.2.tar.gz", hash = "sha256:0c5ac5ff2afb79ac23ab82bab027a0be7b5dbcf2e54dc50efe4bf507de1f7985"}, + {file = "wheel-0.41.3-py3-none-any.whl", hash = "sha256:488609bc63a29322326e05560731bf7bfea8e48ad646e1f5e40d366607de0942"}, + {file = "wheel-0.41.3.tar.gz", hash = "sha256:4d4987ce51a49370ea65c0bfd2234e8ce80a12780820d9dc462597a6e60d0841"}, ] [package.extras] diff --git a/pyproject.toml b/pyproject.toml index 34ae33c3..7b184ad0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pxblat" -version = "1.1.3" +version = "1.1.4" description = "A native python binding for blat suite" authors = ["Yangyang Li "] homepage = "https://github.com/ylab-hi/pxblat" diff --git a/src/pxblat/__init__.py b/src/pxblat/__init__.py index b2000119..6ebc4c9f 100644 --- a/src/pxblat/__init__.py +++ b/src/pxblat/__init__.py @@ -27,7 +27,7 @@ from .toolkit import two_bit_to_fa from rich.traceback import install -__version__ = "1.1.3" +__version__ = "1.1.4" install(show_locals=True)