From 91bd3b42bfbb4eae90c975d2d2b7e46d2db98e7d Mon Sep 17 00:00:00 2001 From: Alvaro Tinoco Date: Tue, 30 Jul 2024 13:57:11 +0200 Subject: [PATCH] Preparation of 4.1.2 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 5de8c96..f29237f 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.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 cecaf40..be48157 100644 --- a/osidb_bindings.spec +++ b/osidb_bindings.spec @@ -1,5 +1,5 @@ %define name osidb_bindings -%define version 4.1.1 +%define version 4.1.2 %define release 0%{?dist} Name: %{name} diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index b9df62f..4696c8b 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "4.1.1" +version = "4.1.2" description = "A client library for accessing OSIDB API" authors = [] diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index be59d7b..771a224 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.1" +OSIDB_BINDINGS_VERSION: str = "4.1.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 89d572c..ccdfd4b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="osidb_bindings", - version="4.1.1", + version="4.1.2", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",