diff --git a/CHANGELOG.md b/CHANGELOG.md index cd2140f..1a14cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v0.11.3 (2024-09-26) + +### Fix + +* **ci:** Upgrade poetry version ([`277171a`](https://github.com/Sagacify/saga-llm-evaluation/commit/277171a7f00ad43ddee94ae498cde205fe40a81c)) + +### Documentation + +* **readme:** Add copy code buttons in code cells ([`a35b732`](https://github.com/Sagacify/saga-llm-evaluation/commit/a35b732bd1b9d3962b30137052a742bb8ddf3085)) +* **readme:** Modify readme for better render ([`f09a639`](https://github.com/Sagacify/saga-llm-evaluation/commit/f09a639cb73b87736b1ed34bfd1c781b28a7428e)) + ## v0.11.2 (2024-09-25) ### Fix diff --git a/pyproject.toml b/pyproject.toml index e595509..5295583 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saga-llm-evaluation" -version = "0.11.2" +version = "0.11.3" 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 05a9c4b..0911dd2 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.2" +__version__ = "0.11.3"