From 05d69eb27651564e594da110e34019e539e0b39c Mon Sep 17 00:00:00 2001 From: Jakub Frejlach Date: Tue, 4 Apr 2023 10:37:42 +0200 Subject: [PATCH] Preparation of 1.3.3 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 69a3c5f..c29a3b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [1.3.3] - 2023-04-04 + ## [1.3.2] - 2023-03-30 ## [1.3.1] - 2023-03-23 diff --git a/component_registry_bindings/bindings/pyproject.toml b/component_registry_bindings/bindings/pyproject.toml index 33c5bd4..0309f55 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.2" +version = "1.3.3" 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 fb2a870..338c391 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.2" +COMPONENT_REGISTRY_BINDINGS_USERAGENT: str = "component-registry-bindings-1.3.3" COMPONENT_REGISTRY_BINDINGS_API_PATH: str = ( f".bindings.python_client.api.{COMPONENT_REGISTRY_API_VERSION}" ) diff --git a/setup.py b/setup.py index f63428e..1c27483 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="component-registry-bindings", - version="1.3.2", + version="1.3.3", author="Jakub Frejlach, Red Hat Product Security", author_email="jfrejlac@redhat.com", description="Python bindings for accessing Component Registry API",