diff --git a/config/settings.py b/config/settings.py index b9309d367..65c07f942 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.5.6", + "VERSION": "4.6.0", "SWAGGER_UI_SETTINGS": {"supportedSubmitMethods": []}, "SERVE_AUTHENTICATION": [ "krb5_auth.auth.KerberosAuthentication", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index dacffdde3..eaab105fb 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.0] - 2024-12-02 ### Added - Update field `updated_dt` on queryset update (OSIDB-3573) - Introduce purl to Affect (OSIDB-3409) diff --git a/openapi.yml b/openapi.yml index 118b52545..5a67a4db5 100644 --- a/openapi.yml +++ b/openapi.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: OSIDB API - version: 4.5.6 + version: 4.6.0 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 d3abb3d2c..a8bb1431e 100644 --- a/osidb/__init__.py +++ b/osidb/__init__.py @@ -1,5 +1,5 @@ """ osidb version """ -__version__ = "4.5.6" +__version__ = "4.6.0" VERSION = __version__