From aa6cba75137070c7289a298ae0590240fcc94bcc Mon Sep 17 00:00:00 2001 From: AI4OS Bot Date: Thu, 8 Aug 2024 13:00:16 +0200 Subject: [PATCH] chore(releases/2.x): release 2.5.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ deepaas/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) 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..a3b59103 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [2.5.0](https://github.com/ai4os/DEEPaaS/compare/v2.4.0...v2.5.0) (2024-08-08) + + +### Features + +* add -dev suffix to the version when installed as dev ([4d087b3](https://github.com/ai4os/DEEPaaS/commit/4d087b3e7df9f53dcfe8fb695ca23e2f55af2abf)) +* add required info to help message ([d710254](https://github.com/ai4os/DEEPaaS/commit/d710254d15066643597b4cfe1c93582a711f0696)) +* add types to help message ([6099f24](https://github.com/ai4os/DEEPaaS/commit/6099f24ea60bd197d6ec55f398a3b080f2c428a2)) +* allow linebreaks in help messages ([2deabdb](https://github.com/ai4os/DEEPaaS/commit/2deabdbb53237373d3892bf53cb6b3f67376599f)) +* allow multiple input files ([b7b1b82](https://github.com/ai4os/DEEPaaS/commit/b7b1b82c56fb9cdb6313c11fd5f4ae4352be2a33)) +* properly support lists and dicts in argparse ([071b777](https://github.com/ai4os/DEEPaaS/commit/071b77784aaacbcda8a75a95adaf28c655b8846c)) +* support bools ([6e1453d](https://github.com/ai4os/DEEPaaS/commit/6e1453d4d05a2e90810da9926b6207c853804643)) + + +### Bug Fixes + +* allow users to setup base_path for serving under a different prefix ([39fa910](https://github.com/ai4os/DEEPaaS/commit/39fa91035db6ec925f7f278542bbc70e534e5063)), closes [#111](https://github.com/ai4os/DEEPaaS/issues/111) +* change deprecated GH action ([71e8230](https://github.com/ai4os/DEEPaaS/commit/71e82303f91748f0e7f771aa890bb879712c800b)) +* change target branch on release-please action ([32b669c](https://github.com/ai4os/DEEPaaS/commit/32b669c6e5eccac5c03cd4ce99c1b6fdd6f0ced1)) +* make description optional ([7717348](https://github.com/ai4os/DEEPaaS/commit/77173480758e4c62a2c6e52009ffd82b90ee0b21)) +* remove deprecated cli option ([05d7f06](https://github.com/ai4os/DEEPaaS/commit/05d7f06f07aaced23776d39641591f38472b0cd6)) + ## [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"