From 6ea532dc9d42d553742a8d488e523cc9186b8444 Mon Sep 17 00:00:00 2001 From: chr1st1ank Date: Wed, 23 Feb 2022 23:21:31 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- narrow_down/__init__.py | 2 +- pyproject.toml | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7f0a1d4..55f7985 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.7.0 +current_version = 0.8.0 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index e1b5007..8cdbdf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.8.0] - 2022-02-23 ### Added - Direct InMemoryStore file serialization in the Rust backend. This avoids a memory peak and also improves the performance of the operation compared to @@ -87,7 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - First release on PyPI. -[Unreleased]: https://github.com/chr1st1ank/narrow-down/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/chr1st1ank/narrow-down/compare/v0.8.0...HEAD +[0.8.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.4.0...v0.5.0 diff --git a/Cargo.lock b/Cargo.lock index 074441b..0d92a6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,7 +113,7 @@ checksum = "97af489e1e21b68de4c390ecca6703318bc1aa16e9733bcb62c089b73c6fbb1b" [[package]] name = "narrow_down" -version = "0.7.0" +version = "0.8.0" dependencies = [ "mur3", "numpy", diff --git a/Cargo.toml b/Cargo.toml index 831e77a..d8c9ba1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "narrow_down" -version = "0.7.0" +version = "0.8.0" edition = "2021" [package.metadata.maturin] diff --git a/narrow_down/__init__.py b/narrow_down/__init__.py index 358a7e9..31f1631 100644 --- a/narrow_down/__init__.py +++ b/narrow_down/__init__.py @@ -2,6 +2,6 @@ __author__ = """Christian Krudewig""" __email__ = "chr1st1ank@krudewig-online.de" -__version__ = "0.7.0" +__version__ = "0.8.0" from . import data_types, hash, similarity_store, storage # noqa diff --git a/pyproject.toml b/pyproject.toml index 72dd165..1b668a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ compatibility = "linux" [project] name = "narrow-down" -version = "0.7.0" +version = "0.8.0" description = "Fast fuzzy text search" readme = "README.md" requires-python = "<3.11,>=3.7"