From 91d38c7696117fb296bc479108e0e0b857f5d77a Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Sat, 20 Apr 2024 11:55:45 +0200 Subject: [PATCH] feat: release version 1.5.0 --- pyproject.toml | 2 +- sw360/__init__.py | 2 +- sw360/base.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6d6dd46..71d6bb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [tool.poetry] name = "sw360" -version = "1.4.1" +version = "1.5.0" description = "Python interface to the SW360 software component catalogue" authors = ["Thomas Graf ", "Gernot Hillier "] diff --git a/sw360/__init__.py b/sw360/__init__.py index 70c605e..4e1a83e 100644 --- a/sw360/__init__.py +++ b/sw360/__init__.py @@ -7,7 +7,7 @@ # SPDX-License-Identifier: MIT # ------------------------------------------------------------------------------- -__version__ = (1, 4, 1) +__version__ = (1, 5, 0) from .sw360_api import SW360 from .sw360error import SW360Error diff --git a/sw360/base.py b/sw360/base.py index b024900..dd8b788 100644 --- a/sw360/base.py +++ b/sw360/base.py @@ -7,7 +7,7 @@ # SPDX-License-Identifier: MIT # ------------------------------------------------------------------------------- -from typing import Any, Dict, Optional, Tuple, Union, List +from typing import Any, Dict, List, Optional, Tuple, Union import requests