diff --git a/CHANGELOG.md b/CHANGELOG.md index 39a3f98..fd66afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.22.3 (2024-06-20) + +### Fix + +- add FastaSequenceDataType import (#151) + ## v0.22.2 (2024-06-18) ## v0.22.1 (2024-06-17) diff --git a/Cargo.toml b/Cargo.toml index 073d5fd..bcb440b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "biobear" -version = "0.22.2" +version = "0.22.3" [lib] crate-type = ["cdylib"] diff --git a/cz.json b/cz.json index e75ed49..b6327a9 100644 --- a/cz.json +++ b/cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "0.22.2", + "version": "0.22.3", "tag_format": "v$version", "version_files": [ "Cargo.toml", diff --git a/pyproject.toml b/pyproject.toml index ce605e9..b136b17 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.2" +version = "0.22.3" [tool.maturin] features = ["pyo3/extension-module"] diff --git a/python/biobear/__init__.py b/python/biobear/__init__.py index 72f1f02..7a748a3 100644 --- a/python/biobear/__init__.py +++ b/python/biobear/__init__.py @@ -48,7 +48,7 @@ from .biobear import __runtime -__version__ = "0.22.2" +__version__ = "0.22.3" __all__ = [ "FastaReader",