From 58192cf06b5f1b6f02150c4e1f07152ed77c920b Mon Sep 17 00:00:00 2001 From: Trent Hauck Date: Thu, 30 May 2024 10:50:27 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.20.3=20=E2=86=92=200.21.0?= 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 b1b99f0..8df3d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.21.0 (2024-05-30) + +### Feat + +- update FASTA for encoding and copy (#139) + ## v0.20.3 (2024-05-23) ## v0.20.2 (2024-05-21) diff --git a/Cargo.toml b/Cargo.toml index 8b23603..bb2d27c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "biobear" -version = "0.20.3" +version = "0.21.0" [lib] crate-type = ["cdylib"] diff --git a/cz.json b/cz.json index 0b77910..68d0130 100644 --- a/cz.json +++ b/cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "0.20.3", + "version": "0.21.0", "tag_format": "v$version", "version_files": [ "Cargo.toml", diff --git a/pyproject.toml b/pyproject.toml index 63698d1..dc31cd7 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.20.3" +version = "0.21.0" [tool.maturin] features = ["pyo3/extension-module"] diff --git a/python/biobear/__init__.py b/python/biobear/__init__.py index b81df45..12f524d 100644 --- a/python/biobear/__init__.py +++ b/python/biobear/__init__.py @@ -47,7 +47,7 @@ from .biobear import __runtime -__version__ = "0.20.3" +__version__ = "0.21.0" __all__ = [ "FastaReader",