-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 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). | ||
|
||
## [Unreleased] | ||
|
||
## [3.0.0] - 2022-06-01 | ||
### Added | ||
- Language support for Arabic ([#40](https://github.com/mattico/elasticlunr-rs/pull/40])). | ||
- Add the `Language` trait to make it easier to implement languages outside the crate. | ||
- Add `IndexBuilder::add_field_with_tokenizer` to specify the tokenizer for a field. | ||
|
||
### Changed | ||
- Update to 2018 edition, and bump MSRV to 1.54.0. | ||
- Change benchmarks to use Criterion. | ||
- Remove dependency on lazy_static. | ||
- Update dependencies. | ||
- Use Unicode character classes for trimmer. | ||
- `IndexBuilder` functions which add fields will now panic if the same field is added multiple times. | ||
- Fix `IndexBuilder` not respecting field insertion order. | ||
|
||
### Removed | ||
- Remove the `default` feature. You now need to opt-in to the `languages` feature. | ||
- Remove the deprecated function `Pipeline::for_language`. | ||
- Remove the `pipeline::tokenize*` functions, which are now implemented as part of the `Language` trait. | ||
- Remove `Index::add_doc_with_tokenizer(s)`, replaced by `IndexBuilder::add_field_with_tokenizer`. | ||
- Remove the `Language` enum. Use the `Language` trait implementations in the `lang` modules, and the free functions `lang::from_name`, `lang::from_code`, and `lang::languages`. | ||
|
||
|
||
[Unreleased]: https://github.com/mattico/elasticlunr-rs/compare/v3.0.0...HEAD | ||
[3.0.0]: https://github.com/mattico/elasticlunr-rs/compare/v2.3.14...v3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters