diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e62ef..550aef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [4.5.0] - 2024-10-30 + ## [4.4.0] - 2024-10-16 ## [4.3.0] - 2024-09-19 diff --git a/osidb_bindings.spec b/osidb_bindings.spec index 9930d13..a55b7e8 100644 --- a/osidb_bindings.spec +++ b/osidb_bindings.spec @@ -1,5 +1,5 @@ %define name osidb_bindings -%define version 4.4.0 +%define version 4.5.0 %define release 0%{?dist} Name: %{name} diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index 26283ec..6de290b 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "4.4.0" +version = "4.5.0" description = "A client library for accessing OSIDB API" authors = [] diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index bcc23d6..018f0d4 100644 --- a/osidb_bindings/constants.py +++ b/osidb_bindings/constants.py @@ -6,7 +6,7 @@ from typing import List OSIDB_API_VERSION: str = "v1" -OSIDB_BINDINGS_VERSION: str = "4.4.0" +OSIDB_BINDINGS_VERSION: str = "4.5.0" 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 d2c6209..c7fa1b7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="osidb_bindings", - version="4.4.0", + version="4.5.0", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",