From 1c42bc7008a1abc6391a09a668a0fb37cd6ce07a Mon Sep 17 00:00:00 2001 From: Trent Hauck Date: Sat, 18 Jan 2025 15:40:33 -0800 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.23.6=20=E2=86=92=200.23.7?= 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 3a6f213..24f92dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.23.7 (2025-01-18) + +### Feat + +- add lazy parameter + ## v0.23.6 (2025-01-18) ### Feat diff --git a/Cargo.toml b/Cargo.toml index 4c613b0..8252aa8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "biobear" -version = "0.23.6" +version = "0.23.7" [lib] crate-type = ["cdylib"] diff --git a/cz.json b/cz.json index 3ca994b..9b50144 100644 --- a/cz.json +++ b/cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "0.23.6", + "version": "0.23.7", "tag_format": "v$version", "version_files": [ "Cargo.toml", diff --git a/pyproject.toml b/pyproject.toml index 83a2fe0..818b936 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.23.6" +version = "0.23.7" [tool.maturin] features = ["pyo3/extension-module"] diff --git a/python/biobear/__init__.py b/python/biobear/__init__.py index 6b0d40e..aadaa01 100644 --- a/python/biobear/__init__.py +++ b/python/biobear/__init__.py @@ -40,7 +40,7 @@ from .biobear import __runtime -__version__ = "0.23.6" +__version__ = "0.23.7" __all__ = [ "compression",