diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 78baf5b..0bd1b03 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.5.0" + ".": "2.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b5910..cd7cffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.5.1](https://github.com/ai4os/DEEPaaS/compare/v2.5.0...v2.5.1) (2024-08-09) + + +### Bug Fixes + +* also serve static_path from base_path ([267ab6a](https://github.com/ai4os/DEEPaaS/commit/267ab6ad6848757b8cc0a2dfb58e15c80ec0de28)), closes [#111](https://github.com/ai4os/DEEPaaS/issues/111) +* do not pass basePath to aiohttp_apispec ([45c8452](https://github.com/ai4os/DEEPaaS/commit/45c84525566285f089bf82415e337a9adca14fe7)), closes [#111](https://github.com/ai4os/DEEPaaS/issues/111) + ## [2.5.0](https://github.com/ai4os/DEEPaaS/compare/v2.4.0...v2.5.0) (2024-08-08) diff --git a/deepaas/__init__.py b/deepaas/__init__.py index d950917..0ef5018 100644 --- a/deepaas/__init__.py +++ b/deepaas/__init__.py @@ -18,7 +18,7 @@ import importlib.metadata from pathlib import Path -__version__ = "2.5.0" +__version__ = "2.5.1" def extract_version() -> str: diff --git a/pyproject.toml b/pyproject.toml index 2f775db..f66d748 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deepaas" -version = "2.5.0" +version = "2.5.1" description = "DEEPaaS is a REST API to expose a machine learning model." authors = ["Alvaro Lopez Garcia "] license = "Apache-2"