diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a549f59d..78baf5bf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.4.0" + ".": "2.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 631f1bd6..e04b1b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.5.0](https://github.com/ai4os/DEEPaaS/compare/v2.4.0...v2.5.0) (2024-06-11) + + +### Features + +* add -dev suffix to the version when installed as dev ([9a9602e](https://github.com/ai4os/DEEPaaS/commit/9a9602e63635bcb9dd35705a21af447cf622c114)) + ## [2.4.0](https://github.com/ai4os/DEEPaaS/compare/v2.3.2...v2.4.0) (2024-06-07) diff --git a/deepaas/__init__.py b/deepaas/__init__.py index 07f79744..d9509175 100644 --- a/deepaas/__init__.py +++ b/deepaas/__init__.py @@ -18,7 +18,7 @@ import importlib.metadata from pathlib import Path -__version__ = "2.4.0" +__version__ = "2.5.0" def extract_version() -> str: diff --git a/pyproject.toml b/pyproject.toml index fb6fbf07..2f775db4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deepaas" -version = "2.4.0" +version = "2.5.0" description = "DEEPaaS is a REST API to expose a machine learning model." authors = ["Alvaro Lopez Garcia "] license = "Apache-2"