From 366012dac32b96c350b3db7637cdd028a2101c9e Mon Sep 17 00:00:00 2001 From: Trent Hauck Date: Fri, 21 Jun 2024 14:28:37 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.22.3=20=E2=86=92=200.22.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- cz.json | 2 +- pyproject.toml | 2 +- python/biobear/__init__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd66afd..03857a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.22.4 (2024-06-21) + +### Feat + +- infer options from file name (#153) + ## v0.22.3 (2024-06-20) ### Fix diff --git a/Cargo.toml b/Cargo.toml index bcb440b..d6f4b3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "biobear" -version = "0.22.3" +version = "0.22.4" [lib] crate-type = ["cdylib"] diff --git a/cz.json b/cz.json index b6327a9..32099b5 100644 --- a/cz.json +++ b/cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "0.22.3", + "version": "0.22.4", "tag_format": "v$version", "version_files": [ "Cargo.toml", diff --git a/pyproject.toml b/pyproject.toml index b136b17..b3bf0c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ name = "biobear" readme = "README.md" requires-python = ">=3.9" description = "A package for working with Bioinformatics data with SQL and Arrow" -version = "0.22.3" +version = "0.22.4" [tool.maturin] features = ["pyo3/extension-module"] diff --git a/python/biobear/__init__.py b/python/biobear/__init__.py index 7a748a3..5fb7b7f 100644 --- a/python/biobear/__init__.py +++ b/python/biobear/__init__.py @@ -48,7 +48,7 @@ from .biobear import __runtime -__version__ = "0.22.3" +__version__ = "0.22.4" __all__ = [ "FastaReader",