Skip to content

Commit

Permalink
chore(master): release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ai4-bot committed Aug 6, 2024
1 parent 47d357f commit b2b465f
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.4.0"
".": "3.0.0"
}
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## [3.0.0](https://github.com/ai4os/DEEPaaS/compare/v2.4.0...v3.0.0) (2024-08-06)


### ⚠ BREAKING CHANGES

* remove oslo.log and use standard python logging
* remove loading of various modules
* remove automatic loading of deprecated deepaas-test model
* remove deprecated deepaas-predict

### Features

* add -dev suffix to the version when installed as dev ([9a9602e](https://github.com/ai4os/DEEPaaS/commit/9a9602e63635bcb9dd35705a21af447cf622c114))
* add required info to help message ([77d40b4](https://github.com/ai4os/DEEPaaS/commit/77d40b437c7eae03446b1b1e952b8640a7f2e5e0))
* add types to help message ([0749057](https://github.com/ai4os/DEEPaaS/commit/0749057bc8b417a6ef4f6f79a436c97a2194699b))
* allow linebreaks in help messages ([3fd3b55](https://github.com/ai4os/DEEPaaS/commit/3fd3b552b614aedb9f84cb882d6b38e2ae5ba487))
* allow multiple input files ([ecff7f6](https://github.com/ai4os/DEEPaaS/commit/ecff7f637cd7384e5b8e167b35f78af1e01dc992))
* properly support lists and dicts in argparse ([ad1ffd7](https://github.com/ai4os/DEEPaaS/commit/ad1ffd7887fb9265267907cf27795058aad762c3))
* 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)
* remove deprecated deepaas-predict ([097cc83](https://github.com/ai4os/DEEPaaS/commit/097cc8303d65daf9949ab93c2e97144f172f6ce5)), closes [#154](https://github.com/ai4os/DEEPaaS/issues/154)
* remove loading of various modules ([80003c3](https://github.com/ai4os/DEEPaaS/commit/80003c328740165c735dc85d4d9d6bb0878ac41c)), closes [#128](https://github.com/ai4os/DEEPaaS/issues/128)
* remove oslo.log and use standard python logging ([033a085](https://github.com/ai4os/DEEPaaS/commit/033a085deb3605602ac6dfc9c8cb96fcd76fd6ef)), closes [#133](https://github.com/ai4os/DEEPaaS/issues/133)
* support bools ([b4f7fd3](https://github.com/ai4os/DEEPaaS/commit/b4f7fd30e0d60a7f7a6b32dfa730dbd3599dfd5c))


### Bug Fixes

* 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)
* make description optional ([f4e9ec4](https://github.com/ai4os/DEEPaaS/commit/f4e9ec4b1746f2a7df7e85d8304b99f05e9d61ad))
* remove deprecated cli option ([7b5896d](https://github.com/ai4os/DEEPaaS/commit/7b5896d427fcaf6ba8fb574dce4eb17f55a8b88c))


### Documentation

* fix doc build ([903e6ec](https://github.com/ai4os/DEEPaaS/commit/903e6ec9b3eb41b2149835f9a55b978477c686d9))

## [2.4.0](https://github.com/ai4os/DEEPaaS/compare/v2.3.2...v2.4.0) (2024-06-07)


Expand Down
2 changes: 1 addition & 1 deletion deepaas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import importlib.metadata
from pathlib import Path

__version__ = "2.4.0"
__version__ = "3.0.0"


def extract_version() -> str:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deepaas"
version = "2.4.0"
version = "3.0.0"
description = "DEEPaaS is a REST API to expose a machine learning model."
authors = ["Alvaro Lopez Garcia <[email protected]>"]
license = "Apache-2"
Expand Down

0 comments on commit b2b465f

Please sign in to comment.