Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.6.0. #6

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.0] - 2024-11-14
### Changed
- Support to fuzzy search custom objects by wrapping then in the `Fzy::Hay(T)` class.
- `Fzy::Match` is now `Fzy::Match(T)`, it has a reference to `Fzy::Hay(T)`
- Removed `Fzy::Match#index`.
- Match positions are opitional and disabled by default.
- Is now possible to use a custom bonus function, pass it on `Fzy::Hay` constructor.
- `Fzy::PreparedHaystack` is now `Fzy::PreparedHaystack(T)`, just a wrapper to `Array(Fzy::Hay(T))`.

## [0.5.5] - 2023-02-24
### Fixed
- Use shards executable to generate the Fzy::VERSION constant contents.
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: fzy
version: 0.5.5
version: 0.6.0

authors:
- Hugo Parente Lima <[email protected]>
Expand Down
Loading