diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6d43f..b143cb3 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.5] - 2023-08-09 ### Changed - implement smarter pagination diff --git a/component_registry_bindings/bindings/pyproject.toml b/component_registry_bindings/bindings/pyproject.toml index 0407af0..a5127f3 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.4" +version = "1.3.5" 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 cdb97ac..76d6c91 100644 --- a/component_registry_bindings/constants.py +++ b/component_registry_bindings/constants.py @@ -5,7 +5,7 @@ from typing import Dict, List COMPONENT_REGISTRY_API_VERSION: str = "v1" -COMPONENT_REGISTRY_BINDINGS_VERSION: str = "1.3.4" +COMPONENT_REGISTRY_BINDINGS_VERSION: str = "1.3.5" COMPONENT_REGISTRY_BINDINGS_USERAGENT: str = ( f"component-registry-bindings-{COMPONENT_REGISTRY_BINDINGS_VERSION}" ) diff --git a/setup.py b/setup.py index b67e6eb..7863e62 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="component-registry-bindings", - version="1.3.4", + version="1.3.5", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing Component Registry API",