From 92bc974f8090ae26d4cd3796e1176b802ebfc827 Mon Sep 17 00:00:00 2001 From: AI4OS Bot Date: Mon, 11 Nov 2024 10:10:53 +0100 Subject: [PATCH] chore(releases/2.x): release 2.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ deepaas/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bbbcf49..69e82f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.5.2" + ".": "2.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3725640..cb3ef92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.6.0](https://github.com/ai4os/DEEPaaS/compare/v2.5.2...v2.6.0) (2024-11-11) + + +### Features + +* disable poetry groups (not compatible with Python 3.6) ([a492900](https://github.com/ai4os/DEEPaaS/commit/a492900d2350023de445c362cfa02b46e3639590)) +* make requirements compatible with Python 3.6 ([c9ca14d](https://github.com/ai4os/DEEPaaS/commit/c9ca14d84e560e0c6ff14e083426e07f260bcd70)) +* stop using `importlib.metadata` incompatible with 3.6 ([c0178b7](https://github.com/ai4os/DEEPaaS/commit/c0178b7016dbaccedb88421b1f541db4c1d18127)) + ## [2.5.2](https://github.com/ai4os/DEEPaaS/compare/v2.5.1...v2.5.2) (2024-08-27) diff --git a/deepaas/__init__.py b/deepaas/__init__.py index 88919e9..dbeb091 100644 --- a/deepaas/__init__.py +++ b/deepaas/__init__.py @@ -18,7 +18,7 @@ # import importlib.metadata # does not work with 3.6 from pathlib import Path -__version__ = "2.5.2" +__version__ = "2.6.0" def extract_version() -> str: diff --git a/pyproject.toml b/pyproject.toml index e3de9c8..f6dfd38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deepaas" -version = "2.5.2" +version = "2.6.0" description = "DEEPaaS is a REST API to expose a machine learning model." authors = ["Alvaro Lopez Garcia "] license = "Apache-2"