From 2d20fd5975aa78f17730f030d0eb080c5912b0f3 Mon Sep 17 00:00:00 2001 From: Jakub Frejlach Date: Mon, 2 Sep 2024 10:51:02 +0200 Subject: [PATCH] Preparation of 4.2.0 release --- CHANGELOG.md | 2 ++ osidb_bindings.spec | 2 +- osidb_bindings/bindings/pyproject.toml | 2 +- osidb_bindings/constants.py | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f29237f..248f55f 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.2.0] - 2024-09-02 + ## [4.1.2] - 2024-07-30 ### Added - support for `promote` operation for `flaw` (OSIDB-3201) diff --git a/osidb_bindings.spec b/osidb_bindings.spec index be48157..06ce6e6 100644 --- a/osidb_bindings.spec +++ b/osidb_bindings.spec @@ -1,5 +1,5 @@ %define name osidb_bindings -%define version 4.1.2 +%define version 4.2.0 %define release 0%{?dist} Name: %{name} diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index 4696c8b..ef16a25 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "4.1.2" +version = "4.2.0" description = "A client library for accessing OSIDB API" authors = [] diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index 771a224..72ee218 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.1.2" +OSIDB_BINDINGS_VERSION: str = "4.2.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 ccdfd4b..ef33323 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="osidb_bindings", - version="4.1.2", + version="4.2.0", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",