Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [5.2.1] - 2025-11-14
### Fixed
- fix extra operations on Flaw


## [5.2.0] - 2025-11-13

## [5.1.0] - 2025-11-11
Expand Down
2 changes: 1 addition & 1 deletion osidb_bindings.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name osidb_bindings
%define version 5.2.0
%define version 5.2.1
%define release 0%{?dist}

Name: %{name}
Expand Down
2 changes: 1 addition & 1 deletion osidb_bindings/bindings/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bindings"
version = "5.2.0"
version = "5.2.1"
description = "A client library for accessing OSIDB API"
authors = []
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion osidb_bindings/bindings_config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project_name_override: bindings
package_name_override: python_client
package_version_override: 5.2.0
package_version_override: 5.2.1
post_hooks:
- "ruff check . --fix --extend-select I --config ../../ruff.toml"
- "ruff format . --config ../../ruff.toml"
2 changes: 1 addition & 1 deletion osidb_bindings/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

OSIDB_API_VERSION: str = "v1"
OSIDB_BINDINGS_VERSION: str = "5.2.0"
OSIDB_BINDINGS_VERSION: str = "5.2.1"
OSIDB_BINDINGS_USERAGENT: str = f"osidb-bindings-{OSIDB_BINDINGS_VERSION}"
OSIDB_BINDINGS_API_PATH: str = ".bindings.python_client.api"
OSIDB_BINDINGS_PLACEHOLDER_FIELD: str = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="osidb_bindings",
version="5.2.0",
version="5.2.1",
author="Jakub Frejlach, Red Hat Product Security",
author_email="jfrejlac@redhat.com",
description="Python bindings for accessing OSIDB API",
Expand Down