From b1a78278655f4be68b2ee2b27face22d38cf2a1a Mon Sep 17 00:00:00 2001 From: Jakub Frejlach Date: Thu, 23 Mar 2023 15:19:50 +0100 Subject: [PATCH] Preparation of 1.3.1 release --- CHANGELOG.md | 2 ++ component_registry_bindings/bindings/pyproject.toml | 2 +- component_registry_bindings/constants.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ea930e..af0e928 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 + +## [1.3.1] - 2023-03-23 ### Changed - fix pagination handling when next/previous are missing diff --git a/component_registry_bindings/bindings/pyproject.toml b/component_registry_bindings/bindings/pyproject.toml index dd69962..70d29f4 100644 --- a/component_registry_bindings/bindings/pyproject.toml +++ b/component_registry_bindings/bindings/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bindings" -version = "1.3.0" +version = "1.3.1" description = "A client library for accessing Component Registry API" authors = [] diff --git a/component_registry_bindings/constants.py b/component_registry_bindings/constants.py index 34db46c..3c6bbd6 100644 --- a/component_registry_bindings/constants.py +++ b/component_registry_bindings/constants.py @@ -1,7 +1,7 @@ from typing import Dict, List COMPONENT_REGISTRY_API_VERSION: str = "v1" -COMPONENT_REGISTRY_BINDINGS_USERAGENT: str = "component-registry-bindings-1.3.0" +COMPONENT_REGISTRY_BINDINGS_USERAGENT: str = "component-registry-bindings-1.3.1" COMPONENT_REGISTRY_BINDINGS_API_PATH: str = ( f".bindings.python_client.api.{COMPONENT_REGISTRY_API_VERSION}" ) diff --git a/setup.py b/setup.py index e6a72c3..470076c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="component-registry-bindings", - version="1.3.0", + version="1.3.1", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing Component Registry API",