diff --git a/config/settings.py b/config/settings.py index dde56a4ff..70716371d 100644 --- a/config/settings.py +++ b/config/settings.py @@ -266,7 +266,7 @@ SPECTACULAR_SETTINGS = { "TITLE": "OSIDB API", "DESCRIPTION": "REST API autogenerated docs for the OSIDB and its components", - "VERSION": "4.5.4", + "VERSION": "4.5.5", "SWAGGER_UI_SETTINGS": {"supportedSubmitMethods": []}, "SERVE_AUTHENTICATION": [ "krb5_auth.auth.KerberosAuthentication", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 319ea504a..8d00211a6 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + +## [4.5.5] - 2024-11-07 ### Changed - Publish internal flaws only when the triage is completed (OSIDB-3669) - Adjust the NIST flag instead of removing on NIST score deletion diff --git a/openapi.yml b/openapi.yml index 47c9cc73e..5188f435b 100644 --- a/openapi.yml +++ b/openapi.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: OSIDB API - version: 4.5.4 + version: 4.5.5 description: REST API autogenerated docs for the OSIDB and its components paths: /auth/token: diff --git a/osidb/__init__.py b/osidb/__init__.py index 67f5a83e1..61cc591b5 100644 --- a/osidb/__init__.py +++ b/osidb/__init__.py @@ -1,5 +1,5 @@ """ osidb version """ -__version__ = "4.5.4" +__version__ = "4.5.5" VERSION = __version__