diff --git a/CHANGELOG.md b/CHANGELOG.md index c15cbae..a590cda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v0.11.6 (2024-09-26) + +### Fix + +* **cd:** Install all dependencies for autodoc ([`140c7cb`](https://github.com/Sagacify/saga-llm-evaluation/commit/140c7cb46d381ccfa4af8ead953fe6f83cba1c11)) + +### Documentation + +* **readme:** Improve badges ([`2e73549`](https://github.com/Sagacify/saga-llm-evaluation/commit/2e73549b2b6bfcb4118751bebbb58bec9c4fde51)) +* **doc:** Fix details ([`a322c3e`](https://github.com/Sagacify/saga-llm-evaluation/commit/a322c3eb839562a6fcf6d50f751170be1f93f475)) + ## v0.11.5 (2024-09-26) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 437bdc6..1c8ce6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saga-llm-evaluation" -version = "0.11.5" +version = "0.11.6" description = "Versatile Python library designed for evaluating the performance of large language models in Natural Language Processing (NLP) tasks. Developed by Sagacify" readme = "README.md" authors = [ diff --git a/saga_llm_evaluation/__init__.py b/saga_llm_evaluation/__init__.py index 5f86913..52a8ec7 100644 --- a/saga_llm_evaluation/__init__.py +++ b/saga_llm_evaluation/__init__.py @@ -9,4 +9,4 @@ from .helpers.llm_metrics import GEval, GPTScore, SelfCheckGPT from .helpers.utils import MetadataExtractor, get_llama_model -__version__ = "0.11.5" +__version__ = "0.11.6"