Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparation of 4.1.1 release #52

Merged
merged 1 commit into from
Jul 10, 2024
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [4.1.0] - 2024-07-01
## [4.1.1] - 2024-07-10
### Added
- support for bulk create and bulk update for Affects (OSIDB-3124)

## [4.1.0] - 2024-07-01

## [4.0.0] - 2024-06-17
### Added
- add `.file` operation for `trackers` (OSIDB-2029)
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 = "4.1.0"
version = "4.1.1"
description = "A client library for accessing OSIDB API"

authors = []
Expand Down
2 changes: 1 addition & 1 deletion osidb_bindings/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import List

OSIDB_API_VERSION: str = "v1"
OSIDB_BINDINGS_VERSION: str = "4.1.0"
OSIDB_BINDINGS_VERSION: str = "4.1.1"
OSIDB_BINDINGS_USERAGENT: str = f"osidb-bindings-{OSIDB_BINDINGS_VERSION}"
OSIDB_BINDINGS_API_PATH: str = ".bindings.python_client.api.osidb"
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="4.1.0",
version="4.1.1",
author="Jakub Frejlach, Red Hat Product Security",
author_email="[email protected]",
description="Python bindings for accessing OSIDB API",
Expand Down