diff --git a/CHANGELOG.md b/CHANGELOG.md index 893a072..835742a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,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.6.2] - 2025-01-21 ### Fixed - fixed issue with parametrized generic types (eg. list of affects) diff --git a/osidb_bindings.spec b/osidb_bindings.spec index e30a274..33fb3ea 100644 --- a/osidb_bindings.spec +++ b/osidb_bindings.spec @@ -1,5 +1,5 @@ %define name osidb_bindings -%define version 4.6.1 +%define version 4.6.2 %define release 0%{?dist} Name: %{name} diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index 57a050d..733522e 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "4.6.1" +version = "4.6.2" description = "A client library for accessing OSIDB API" authors = [] readme = "README.md" diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index 55b26b5..1422f80 100644 --- a/osidb_bindings/constants.py +++ b/osidb_bindings/constants.py @@ -5,7 +5,7 @@ from typing import List OSIDB_API_VERSION: str = "v1" -OSIDB_BINDINGS_VERSION: str = "4.6.1" +OSIDB_BINDINGS_VERSION: str = "4.6.2" OSIDB_BINDINGS_USERAGENT: str = f"osidb-bindings-{OSIDB_BINDINGS_VERSION}" OSIDB_BINDINGS_API_PATH: str = ".bindings.python_client.api.osidb" OSIDB_BINDINGS_PLACEHOLDER_FIELD: str = ( diff --git a/setup.py b/setup.py index a96b8b1..f3957c5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="osidb_bindings", - version="4.6.1", + version="4.6.2", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",