diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8c286..5f27b39 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.10] - 2023-09-05 ### Fixed - fix usage of query parameters with double underscore - fix `to_dict` not being able corretly transform UNSET values diff --git a/component_registry_bindings/bindings/pyproject.toml b/component_registry_bindings/bindings/pyproject.toml index f21e3a2..1147baa 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.9" +version = "1.3.10" 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 92b6024..5eac7a4 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.9" +COMPONENT_REGISTRY_BINDINGS_VERSION: str = "1.3.10" COMPONENT_REGISTRY_BINDINGS_USERAGENT: str = ( f"component-registry-bindings-{COMPONENT_REGISTRY_BINDINGS_VERSION}" ) diff --git a/setup.py b/setup.py index 8a0f5e1..8d9ed49 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="component-registry-bindings", - version="1.3.9", + version="1.3.10", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing Component Registry API",