Skip to content

Commit

Permalink
Preparation of 3.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubFrejlach committed Jun 28, 2023
1 parent b5241a8 commit c2c460c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
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

## [3.3.0] - 2023-06-28
### Added
- support for nested resources (eg. Flaw references, Flaw comments)
- CRUD operations for Flaw References (create, update, retrieve, retrieve_list, delete)
- CRUD operations for Flaw Comments (create, retrieve, retrieve_list)
## [3.1.0] - 2023-04-26

## [3.0.2] - 2023-04-04
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 = "3.1.0"
version = "3.3.0"
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
@@ -1,7 +1,7 @@
from typing import List

OSIDB_API_VERSION: str = "v1"
OSIDB_BINDINGS_VERSION: str = "3.1.0"
OSIDB_BINDINGS_VERSION: str = "3.3.0"
OSIDB_BINDINGS_USERAGENT: str = f"osidb-bindings-{OSIDB_BINDINGS_VERSION}"
OSIDB_BINDINGS_API_PATH: str = ".bindings.python_client.api.osidb"

Expand Down
2 changes: 1 addition & 1 deletion osidb_bindings/openapi_schema.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: OSIDB API
version: 3.2.2
version: 3.3.0
description: REST API autogenerated docs for the OSIDB and its components
paths:
/auth/token:
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="3.1.0",
version="3.3.0",
author="Jakub Frejlach, Red Hat Product Security",
author_email="[email protected]",
description="Python bindings for accessing OSIDB API",
Expand Down

0 comments on commit c2c460c

Please sign in to comment.