From f6e5121b7c85fac28673271c8f33e79783b26949 Mon Sep 17 00:00:00 2001 From: Jakub Frejlach Date: Tue, 17 Oct 2023 15:53:53 +0200 Subject: [PATCH] Preparation of 3.5.1 release --- CHANGELOG.md | 2 ++ osidb_bindings/bindings/pyproject.toml | 2 +- osidb_bindings/constants.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 443abaa..0f52647 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 + +## [3.5.1] - 2023-10-17 ### Fixed - add workaround for Erratum shipped_dt which is marked as non-nullable despite being nullable diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index f497319..46ca69e 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "3.5.0" +version = "3.5.1" description = "A client library for accessing OSIDB API" authors = [] diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index 1a8c67a..114f33e 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 = "3.5.0" +OSIDB_BINDINGS_VERSION: str = "3.5.1" 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 5886fc8..2d2c642 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="osidb-bindings", - version="3.5.0", + version="3.5.1", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",