From a3f66577069b188c7673464b6b1ffeae2b97915f Mon Sep 17 00:00:00 2001 From: Trent Hauck Date: Tue, 23 Apr 2024 17:48:14 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.19.1=20=E2=86=92=200.19.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- cz.json | 2 +- pyproject.toml | 2 +- python/biobear/__init__.py | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46abf4b..61e3384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.19.2 (2024-04-23) + +### Fix + +- update version + ## v0.19.1 (2024-04-23) ### Fix diff --git a/Cargo.toml b/Cargo.toml index 085b82d..fd5e200 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "biobear" -version = "0.19.1" +version = "0.19.2" [lib] crate-type = ["cdylib"] @@ -10,7 +10,7 @@ name = "biobear" [dependencies] arrow = { version = "51.0.0", features = ["pyarrow"] } datafusion = "37" -exon = { version = "0.19.1", features = ["default"] } +exon = { version = "0.19.2", features = ["default"] } pyo3 = "0.20" tokio = { version = "1", features = ["rt"] } noodles = { version = "0.70", features = ["core"] } diff --git a/cz.json b/cz.json index b7a9361..858373c 100644 --- a/cz.json +++ b/cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "0.19.1", + "version": "0.19.2", "tag_format": "v$version", "version_files": [ "Cargo.toml", diff --git a/pyproject.toml b/pyproject.toml index 4ae8b0a..5b16961 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ readme = "README.md" requires-python = ">=3.8" description = "A package for working with Bioinformatics data with SQL and Arrow" summary = "A package for working with Bioinformatics data with SQL and Arrow" -version = "0.19.1" +version = "0.19.2" [tool.maturin] features = ["pyo3/extension-module"] diff --git a/python/biobear/__init__.py b/python/biobear/__init__.py index 690d974..3ac634b 100644 --- a/python/biobear/__init__.py +++ b/python/biobear/__init__.py @@ -47,7 +47,7 @@ from .biobear import __runtime -__version__ = "0.19.1" +__version__ = "0.19.2" __all__ = [ "FastaReader",