diff --git a/docs/changelog.md b/docs/changelog.md index 21c56601..a2cd9909 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,15 @@ hide: --- +## **Version 0.8.5** +*Release date: 14 June, 2024* + +* Use `batch_size` parameter with `keybert.backend.SentenceTransformerBackend` by [@adhadse](https://github.com/adhadse) in [#210](https://github.com/MaartenGr/KeyBERT/pull/210) +* Add system_prompt param to LLMs by [@lucafirefox](https://github.com/lucafirefox) in [#214](https://github.com/MaartenGr/KeyBERT/pull/214) +* Update OpenAI API response by [@lucafirefox](https://github.com/lucafirefox) in [#213](https://github.com/MaartenGr/KeyBERT/pull/213) +* Drop support for python 3.6 and 3.7 by [@afuetterer](https://github.com/afuetterer) in [#230](https://github.com/MaartenGr/KeyBERT/pull/230) +* Bump github actions versions by [@afuetterer](https://github.com/afuetterer) in [#228](https://github.com/MaartenGr/KeyBERT/pull/228) +* Switch from setup.py to pyproject.toml by [@afuetterer](https://github.com/afuetterer) in [#231](https://github.com/MaartenGr/KeyBERT/pull/231) ## **Version 0.8.4** *Release date: 15 Februari, 2024* diff --git a/mkdocs.yml b/mkdocs.yml index 029418ec..07d03c20 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -35,7 +35,7 @@ plugins: watch: - keybert - search -copyright: Copyright © 2022 Maintained by Maarten Grootendorst. +copyright: Copyright © 2024 Maintained by Maarten Grootendorst. theme: custom_dir: images/ diff --git a/pyproject.toml b/pyproject.toml index ba400ae7..4eba6572 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "keybert" -version = "0.8.4" +version = "0.8.5" description = "KeyBERT performs keyword extraction with state-of-the-art transformer models." readme = "README.md" license = {file = "LICENSE"}