From 64883cfa9b77f8d73bf80447d81c05d61bad2836 Mon Sep 17 00:00:00 2001 From: chr1st1ank Date: Sun, 6 Feb 2022 02:22:35 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- narrow_down/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 097bf5a..ac09a04 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.6.0 +current_version = 0.7.0 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b9c9bb..68e4aa8 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.7.0] - 2022-02-06 ### Added - InMemoryStore can be serialized to and deserialized from MessagePack. - SimilarityStore.top_n_query() now allows to find a limited number of most similar documents. @@ -81,7 +83,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.6.0...HEAD +[Unreleased]: https://github.com/chr1st1ank/narrow-down/compare/v0.7.0...HEAD +[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 [0.4.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.3.1...v0.4.0 diff --git a/Cargo.toml b/Cargo.toml index 8f705cb..831e77a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "narrow_down" -version = "0.6.0" +version = "0.7.0" edition = "2021" [package.metadata.maturin] diff --git a/narrow_down/__init__.py b/narrow_down/__init__.py index 833c242..358a7e9 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.6.0" +__version__ = "0.7.0" from . import data_types, hash, similarity_store, storage # noqa diff --git a/pyproject.toml b/pyproject.toml index 6ca00f2..29a78c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ compatibility = "linux" [project] name = "narrow-down" -version = "0.6.0" +version = "0.7.0" description = "Fast fuzzy text search" readme = "README.md" requires-python = "<3.11,>=3.7"