diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d24ac9..cd2140f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ +## v0.11.2 (2024-09-25) + +### Fix + +* **cd:** Switch doc build to cd ([`b2f3579`](https://github.com/Sagacify/saga-llm-evaluation/commit/b2f3579425f6f58911d747fa5e8b0d995e9a9db6)) +* **ci:** Change permissions for github token ([`8c3aae4`](https://github.com/Sagacify/saga-llm-evaluation/commit/8c3aae4052a5f9d5c5d6e6134b6a3f9d061244ac)) +* **ci:** Change project name ([`0099d05`](https://github.com/Sagacify/saga-llm-evaluation/commit/0099d05b24a6c6f2125e10646eca96d4cf75b3e1)) +* **ci:** Poetry install ([`8dd77a6`](https://github.com/Sagacify/saga-llm-evaluation/commit/8dd77a6d449597e76a7c41da61c2ae673789648c)) +* **ci:** Use leorem file ([`42546b8`](https://github.com/Sagacify/saga-llm-evaluation/commit/42546b8c1d5f48efb54b5eb81cbf86d0bae96763)) +* **ci:** Set permissions ([`d47accd`](https://github.com/Sagacify/saga-llm-evaluation/commit/d47accd72f0043be7ce35233b492ba772a233a0c)) +* **cd:** Change to ci ([`a074974`](https://github.com/Sagacify/saga-llm-evaluation/commit/a074974d62adf4351ac6d1065c2648642fe185d8)) +* **cd:** Install dependencies ([`eea0dd2`](https://github.com/Sagacify/saga-llm-evaluation/commit/eea0dd2a1fb6389711bfd0ad27887f726802a1be)) + ## v0.11.1 (2024-09-24) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 8e4e49c..19c119c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saga-llm-evaluation" -version = "0.11.1" +version = "0.11.2" 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 34023f7..05a9c4b 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.1" +__version__ = "0.11.2"