diff --git a/CHANGELOG.md b/CHANGELOG.md index e734796..84a56b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ +## v4.13.3 (2024-11-01) + +### Other + +* Merge pull request #719 from mraniki/dev + +♻️ refactor client structure ([`6369406`](https://github.com/mraniki/MyLLM/commit/6369406f77684dd13b4502de5f611c2923ebb4e9)) + +### ♻️ + +* ♻️ refactor client structure ([`bac7283`](https://github.com/mraniki/MyLLM/commit/bac72835d7fb01329118de58b82f998901933c94)) + ## v4.13.2 (2024-10-31) ### Other diff --git a/myllm/__init__.py b/myllm/__init__.py index ebf47a8..a59721f 100644 --- a/myllm/__init__.py +++ b/myllm/__init__.py @@ -1,7 +1,7 @@ """ Versioning """ -__version__ = "4.13.2" +__version__ = "4.13.3" from .main import MyLLM diff --git a/pyproject.toml b/pyproject.toml index 0e4927e..45d66ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "MyLLM" -version = "4.13.2" +version = "4.13.3" description = "A python package to interact with llm model supported by g4f and langchain." authors = ["mraniki <8766259+mraniki@users.noreply.github.com>"] license = "MIT License" @@ -93,6 +93,7 @@ overgeneral-exceptions = [ + [tool.poetry.group.test.dependencies] @@ -120,6 +121,7 @@ pytest-loguru = "^0.4.0" + [tool.poetry.group.docs] optional = true