Skip to content

Commit

Permalink
release version 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe committed Feb 20, 2024
1 parent ff688ee commit 355938f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "nucleo"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <[email protected]>"]
version = "0.3.0"
authors = ["Pascal Kuthe <[email protected]>"]
version = "0.4.0"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions matcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "nucleo-matcher"
description = "plug and play high performance fuzzy matcher"
authors = ["Pascal Kuthe <[email protected]>"]
version = "0.3.0"
authors = ["Pascal Kuthe <[email protected]>"]
version = "0.3.1"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
Expand Down

0 comments on commit 355938f

Please sign in to comment.