diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f7ee31..7025d120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ +## v3.1.23 (2023-10-11) + +### :recycle: + +* :recycle: Add gitIgnoredAuthors to renovate.json ([`18e6095`](https://github.com/mraniki/MyLLM/commit/18e6095bba9f4f108c067f5a87172b3242286476)) + +### Other + +* Merge pull request #161 from mraniki/dev + +:recycle: Add gitIgnoredAuthors to renovate.json ([`5f3205b`](https://github.com/mraniki/MyLLM/commit/5f3205b840b165086fcc9d9605100a94e17c3c0a)) + + ## v3.1.22 (2023-10-11) ### Other diff --git a/myllm/__init__.py b/myllm/__init__.py index b3cad03a..15077126 100644 --- a/myllm/__init__.py +++ b/myllm/__init__.py @@ -1,7 +1,7 @@ """ Versioning """ -__version__ = "3.1.22" +__version__ = "3.1.23" from .main import MyLLM diff --git a/pyproject.toml b/pyproject.toml index 20f43cf2..f258cb1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "MyLLM" -version = "3.1.22" +version = "3.1.23" 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" @@ -84,6 +84,7 @@ overgeneral-exceptions = [ + [tool.poetry.group.test.dependencies] @@ -114,6 +115,7 @@ pytest-loguru = "^0.3.0" + [tool.poetry.group.docs]