From c2c460cbb06515fe962cf2a74fbec977daa0f77a Mon Sep 17 00:00:00 2001 From: Jakub Frejlach Date: Wed, 28 Jun 2023 13:17:12 +0200 Subject: [PATCH] Preparation of 3.3.0 release --- CHANGELOG.md | 5 +++++ osidb_bindings/bindings/pyproject.toml | 2 +- osidb_bindings/constants.py | 2 +- osidb_bindings/openapi_schema.yml | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e910a6..477ba3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/osidb_bindings/bindings/pyproject.toml b/osidb_bindings/bindings/pyproject.toml index e5a7507..3103d8a 100644 --- a/osidb_bindings/bindings/pyproject.toml +++ b/osidb_bindings/bindings/pyproject.toml @@ -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 = [] diff --git a/osidb_bindings/constants.py b/osidb_bindings/constants.py index d9aa028..73200e2 100644 --- a/osidb_bindings/constants.py +++ b/osidb_bindings/constants.py @@ -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" diff --git a/osidb_bindings/openapi_schema.yml b/osidb_bindings/openapi_schema.yml index 516d7bc..b7d1a45 100644 --- a/osidb_bindings/openapi_schema.yml +++ b/osidb_bindings/openapi_schema.yml @@ -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: diff --git a/setup.py b/setup.py index 86b63ca..8775591 100644 --- a/setup.py +++ b/setup.py @@ -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="jfrejlac@redhat.com", description="Python bindings for accessing OSIDB API",