From 6a165ebef8287e41a5e0b025cf9ae284ed65b0b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 19:41:39 +0000 Subject: [PATCH 1/3] chore(deps): update mypy requirement from ~=1.10.0 to ~=1.10.1 Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.0...v1.10.1) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0568a34..5e4cb5e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ ollama~=0.2.1 fastapi~=0.111.0 pydantic~=2.7.3 -mypy~=1.10.0 +mypy~=1.10.1 mypy-extensions~=1.0.0 pytest~=8.2.2 From 4578906df53ffa73a57655194ff8a9993de8134c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 19:41:44 +0000 Subject: [PATCH 2/3] chore(deps): update pydantic requirement from ~=2.7.3 to ~=2.8.0 Updates the requirements on [pydantic](https://github.com/pydantic/pydantic) to permit the latest version. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.7.3...v2.8.0) --- updated-dependencies: - dependency-name: pydantic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0568a34..0eded8e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ ollama~=0.2.1 fastapi~=0.111.0 -pydantic~=2.7.3 +pydantic~=2.8.0 mypy~=1.10.0 mypy-extensions~=1.0.0 pytest~=8.2.2 From d9048df66b0dfb60b45ef7990022e83c3d194541 Mon Sep 17 00:00:00 2001 From: Dino-Kupinic Date: Sun, 7 Jul 2024 20:37:00 +0200 Subject: [PATCH 3/3] chore(release): v0.1.6 --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index bb56aa5..ec9ba6f 100644 --- a/src/main.py +++ b/src/main.py @@ -6,7 +6,7 @@ app = FastAPI( title="AI Backend", description="ai backend for your app powered by llama3", - version="0.1.5", + version="0.1.6", ) origins = ["*"]