release version 0.4

This commit is contained in:
Pascal Kuthe
2024-02-20 18:57:14 +01:00
parent ff688ee1b8
commit 355938f0ee
5 changed files with 14 additions and 9 deletions

View File

@@ -1,10 +1,15 @@
# Changelog
# [0.3.1] - 2023-12-22
# [0.4.0] - 2023-12-22
## Added
* `active_injectors()` to retrieve the number of injectors that can potentially add new items to the matcher in the future.
## Bugfixes
* fix Unicode substring matcher expecting an exact match (rejecting trailing characters)
* fix crashes and false positives in unicode substring matcher
# [0.3.0] - 2023-12-22

4
Cargo.lock generated
View File

@@ -152,7 +152,7 @@ dependencies = [
[[package]]
name = "nucleo"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"nucleo-matcher",
"parking_lot",
@@ -161,7 +161,7 @@ dependencies = [
[[package]]
name = "nucleo-matcher"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"cov-mark",
"memchr",

View File

@@ -1,8 +1,8 @@
[package]
name = "nucleo"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
version = "0.3.0"
authors = ["Pascal Kuthe <pascalkuthe@pm.me>"]
version = "0.4.0"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
@@ -12,7 +12,7 @@ exclude = ["/typos.toml", "/tarpaulin.toml"]
[lib]
[dependencies]
nucleo-matcher = { version = "0.3.0", path = "matcher" }
nucleo-matcher = { version = "0.3.1", path = "matcher" }
parking_lot = { version = "0.12.1", features = ["send_guard", "arc_lock"]}
rayon = "1.7.0"

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nucleo = { version = "0.3", path = "../" }
nucleo = { version = "*", path = "../" }
brunch = "0.5.0"
fuzzy-matcher = "0.3.7"
walkdir = "2"

View File

@@ -1,8 +1,8 @@
[package]
name = "nucleo-matcher"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <pascal.kuthe@semimod.de>"]
version = "0.3.0"
authors = ["Pascal Kuthe <pascalkuthe@pm.me>"]
version = "0.3.1"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"