Skip to content

Commit

Permalink
Bump version: 0.9.3 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chr1st1ank committed May 8, 2022
1 parent 0beba53 commit 97e8f88
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.9.3
current_version = 0.10.0

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2022-05-08
### Changed
- Improved performance of SimilarityStore.query_top_n()

## [0.9.3] - 2022-04-05
### Fixed
- Fixes #63 which led to Exceptions in case of empty documents.
Expand Down Expand Up @@ -113,7 +117,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.9.3...HEAD
[Unreleased]: https://github.com/chr1st1ank/narrow-down/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/chr1st1ank/narrow-down/compare/v0.9.3...v0.10.0
[0.9.3]: https://github.com/chr1st1ank/narrow-down/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/chr1st1ank/narrow-down/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/chr1st1ank/narrow-down/compare/v0.9.0...v0.9.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "narrow_down"
version = "0.9.3"
version = "0.10.0"
edition = "2021"

[package.metadata.maturin]
Expand Down
2 changes: 1 addition & 1 deletion narrow_down/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Christian Krudewig"""
__email__ = "chr1st1ank@krudewig-online.de"
__version__ = "0.9.3"
__version__ = "0.10.0"

from . import hash, similarity_store, storage # noqa
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ compatibility = "linux"

[project]
name = "narrow-down"
version = "0.9.3"
version = "0.10.0"
description = "Fast fuzzy text search"
readme = "README.md"
requires-python = "<3.11,>=3.7"
Expand Down

0 comments on commit 97e8f88

Please sign in to comment.