Skip to content

Commit 5daa7fb

Browse files
committed
chore(master): release 3.0.0
1 parent 903e6ec commit 5daa7fb

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.4.0"
2+
".": "3.0.0"
33
}

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [3.0.0](https://github.com/ai4os/DEEPaaS/compare/v2.4.0...v3.0.0) (2024-06-12)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* remove automatic loading of deprecated deepaas-test model
9+
* remove deprecated deepaas-predict
10+
11+
### Features
12+
13+
* add -dev suffix to the version when installed as dev ([9a9602e](https://github.com/ai4os/DEEPaaS/commit/9a9602e63635bcb9dd35705a21af447cf622c114))
14+
* remove automatic loading of deprecated deepaas-test model ([376b0f9](https://github.com/ai4os/DEEPaaS/commit/376b0f905cce1c3416dbfbc61e5c91dc51db94c8)), closes [#132](https://github.com/ai4os/DEEPaaS/issues/132)
15+
* remove deprecated deepaas-predict ([097cc83](https://github.com/ai4os/DEEPaaS/commit/097cc8303d65daf9949ab93c2e97144f172f6ce5)), closes [#154](https://github.com/ai4os/DEEPaaS/issues/154)
16+
17+
18+
### Bug Fixes
19+
20+
* allow users to setup base_path for serving under a different prefix ([242e02e](https://github.com/ai4os/DEEPaaS/commit/242e02ee0dfb98227ff121a45636957c43e2762e)), closes [#111](https://github.com/ai4os/DEEPaaS/issues/111)
21+
* remove deprecated cli option ([7b5896d](https://github.com/ai4os/DEEPaaS/commit/7b5896d427fcaf6ba8fb574dce4eb17f55a8b88c))
22+
23+
24+
### Documentation
25+
26+
* fix doc build ([903e6ec](https://github.com/ai4os/DEEPaaS/commit/903e6ec9b3eb41b2149835f9a55b978477c686d9))
27+
328
## [2.4.0](https://github.com/ai4os/DEEPaaS/compare/v2.3.2...v2.4.0) (2024-06-07)
429

530

deepaas/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import importlib.metadata
1919
from pathlib import Path
2020

21-
__version__ = "2.4.0"
21+
__version__ = "3.0.0"
2222

2323

2424
def extract_version() -> str:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deepaas"
3-
version = "2.4.0"
3+
version = "3.0.0"
44
description = "DEEPaaS is a REST API to expose a machine learning model."
55
authors = ["Alvaro Lopez Garcia <[email protected]>"]
66
license = "Apache-2"

0 commit comments

Comments
 (0)