summaryrefslogtreecommitdiffstats
path: root/vendor/elasticlunr-rs/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/elasticlunr-rs/CHANGELOG.md
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/elasticlunr-rs/CHANGELOG.md')
-rw-r--r--vendor/elasticlunr-rs/CHANGELOG.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/elasticlunr-rs/CHANGELOG.md b/vendor/elasticlunr-rs/CHANGELOG.md
new file mode 100644
index 000000000..e7b79ba33
--- /dev/null
+++ b/vendor/elasticlunr-rs/CHANGELOG.md
@@ -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