From ac01278e976b43462c4c7c44db4db7685537e0d2 Mon Sep 17 00:00:00 2001 From: osoukup Date: Fri, 10 Jan 2025 13:01:31 +0100 Subject: [PATCH] Update version to 4.6.4 --- config/settings.py | 2 +- docs/CHANGELOG.md | 2 +- openapi.yml | 2 +- osidb/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/settings.py b/config/settings.py index 449649f18..c46dbf767 100644 --- a/config/settings.py +++ b/config/settings.py @@ -275,7 +275,7 @@ SPECTACULAR_SETTINGS = { "TITLE": "OSIDB API", "DESCRIPTION": "REST API autogenerated docs for the OSIDB and its components", - "VERSION": "4.6.3", + "VERSION": "4.6.4", "SWAGGER_UI_SETTINGS": {"supportedSubmitMethods": []}, "SERVE_AUTHENTICATION": [ "krb5_auth.auth.KerberosAuthentication", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c30bb5a79..a6e7b7aad 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,7 +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 +## [4.6.4] - 2025-01-10 ### Changed - Moved docker-compose images from docker.io to mirror.gcr.io (OSIDB-3653) - Removed `last_validated_dt` from exposed JSON Flaw History data (OSIDB-3814) diff --git a/openapi.yml b/openapi.yml index 71c7509c9..cd3a98cba 100644 --- a/openapi.yml +++ b/openapi.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: OSIDB API - version: 4.6.3 + version: 4.6.4 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 36589b09d..09248eaf9 100644 --- a/osidb/__init__.py +++ b/osidb/__init__.py @@ -1,5 +1,5 @@ """ osidb version """ -__version__ = "4.6.3" +__version__ = "4.6.4" VERSION = __version__