From b2cba586a81710b0585b80b00bf04293da72eff3 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 12 Jan 2023 20:12:20 +0300 Subject: [PATCH] Bump to v0.1.0 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bbf838..63f980a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.1.0] - 2023-01-12 + +### Added + +- Added full-text search for keys, with pagination using `store.search(term, skip, limit)` + +### Changed + +- Changed the `Store::new()` signature to include `max_search_index_key_length` option. + +### Fixed + ## [0.0.3] - 2022-11-09 ### Added diff --git a/pyproject.toml b/pyproject.toml index 12b82ab..581b2da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "py_scdb" -version = "0.0.3" +version = "0.1.0" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",