diff --git a/config/settings.py b/config/settings.py index 65c07f942..4de8c7048 100644 --- a/config/settings.py +++ b/config/settings.py @@ -267,7 +267,7 @@ SPECTACULAR_SETTINGS = { "TITLE": "OSIDB API", "DESCRIPTION": "REST API autogenerated docs for the OSIDB and its components", - "VERSION": "4.6.0", + "VERSION": "4.6.1", "SWAGGER_UI_SETTINGS": {"supportedSubmitMethods": []}, "SERVE_AUTHENTICATION": [ "krb5_auth.auth.KerberosAuthentication", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 04ad1389e..48d10af16 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,8 +4,7 @@ All notable changes to this project will be documented in this file. 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 -### Fixed +## [4.6.1] - 2024-12-06 - Fix not enough general CVE Severity/Severity error fallback (OSIDB-3767) ## [4.6.0] - 2024-12-02 diff --git a/openapi.yml b/openapi.yml index 5a67a4db5..3cf9f876e 100644 --- a/openapi.yml +++ b/openapi.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: OSIDB API - version: 4.6.0 + version: 4.6.1 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 a8bb1431e..cd0683e6c 100644 --- a/osidb/__init__.py +++ b/osidb/__init__.py @@ -1,5 +1,5 @@ """ osidb version """ -__version__ = "4.6.0" +__version__ = "4.6.1" VERSION = __version__