diff --git a/CHANGELOG.md b/CHANGELOG.md index ef9cfe4..c15cbae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.11.5 (2024-09-26) + +### Fix + +* **cd:** Install only docs dependencies ([`d26748c`](https://github.com/Sagacify/saga-llm-evaluation/commit/d26748cf56186605f55f1c3357e090c8b2b25e95)) + ## v0.11.4 (2024-09-26) ### Fix diff --git a/pyproject.toml b/pyproject.toml index e73a6c4..437bdc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saga-llm-evaluation" -version = "0.11.4" +version = "0.11.5" 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 aaf8cd2..5f86913 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.4" +__version__ = "0.11.5"