diff --git a/pytest-saas/doc/changes/changelog.md b/pytest-saas/doc/changes/changelog.md index 31c4ef5..56361e6 100644 --- a/pytest-saas/doc/changes/changelog.md +++ b/pytest-saas/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changes * [unreleased](unreleased.md) +* [0.2.1](changes_0.2.1.md) * [0.2.0](changes_0.2.0.md) * [0.1.0](changes_0.1.0.md) @@ -10,6 +11,7 @@ hidden: --- unreleased +changes_0.2.1 changes_0.2.0 changes_0.1.0 diff --git a/pytest-saas/doc/changes/changes_0.2.1.md b/pytest-saas/doc/changes/changes_0.2.1.md new file mode 100644 index 0000000..6b74e2c --- /dev/null +++ b/pytest-saas/doc/changes/changes_0.2.1.md @@ -0,0 +1,5 @@ +# 0.2.1 - 2024-06-07 + +# Changes + +* #22: Updated dependencies and relaxed version specifier for saas-api-python. diff --git a/pytest-saas/doc/changes/unreleased.md b/pytest-saas/doc/changes/unreleased.md index a7249fa..79e701b 100644 --- a/pytest-saas/doc/changes/unreleased.md +++ b/pytest-saas/doc/changes/unreleased.md @@ -1,6 +1 @@ # Unreleased - - -## Refactorings - -* #22: Changed pyproject allowing saas-api-python dependency until v.1.0.0. diff --git a/pytest-saas/exasol/pytest_saas/version.py b/pytest-saas/exasol/pytest_saas/version.py index 55cfb40..743e22d 100644 --- a/pytest-saas/exasol/pytest_saas/version.py +++ b/pytest-saas/exasol/pytest_saas/version.py @@ -6,5 +6,5 @@ # If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`. MAJOR = 0 MINOR = 2 -PATCH = 0 +PATCH = 1 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" diff --git a/pytest-saas/poetry.lock b/pytest-saas/poetry.lock index 1a150a2..b779c31 100644 --- a/pytest-saas/poetry.lock +++ b/pytest-saas/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "alabaster" @@ -431,13 +431,13 @@ files = [ [[package]] name = "exasol-saas-api" -version = "0.6.0" +version = "0.7.0" description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services" optional = false python-versions = "<4.0,>=3.8.0" files = [ - {file = "exasol_saas_api-0.6.0-py3-none-any.whl", hash = "sha256:d6ff6501e10e97352459cd853f47053ed3affcc6d7c733debbe80b3f8c709aaa"}, - {file = "exasol_saas_api-0.6.0.tar.gz", hash = "sha256:195ad5aaf15be270838e08b2e4a9fddb7981faf33ee00ed68042c5707d90612f"}, + {file = "exasol_saas_api-0.7.0-py3-none-any.whl", hash = "sha256:7ffe1a05aa419099bcafa3984af5f750dc2234c8b18170ccda5336b95bac7c09"}, + {file = "exasol_saas_api-0.7.0.tar.gz", hash = "sha256:8d69780cdc876dc206797fea5b2f964a06248f0a087b611ae06ac3646f84a846"}, ] [package.dependencies] @@ -1062,13 +1062,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pylint" -version = "3.2.2" +version = "3.2.3" description = "python code static checker" optional = false python-versions = ">=3.8.0" files = [ - {file = "pylint-3.2.2-py3-none-any.whl", hash = "sha256:3f8788ab20bb8383e06dd2233e50f8e08949cfd9574804564803441a4946eab4"}, - {file = "pylint-3.2.2.tar.gz", hash = "sha256:d068ca1dfd735fb92a07d33cb8f288adc0f6bc1287a139ca2425366f7cbe38f8"}, + {file = "pylint-3.2.3-py3-none-any.whl", hash = "sha256:b3d7d2708a3e04b4679e02d99e72329a8b7ee8afb8d04110682278781f889fa8"}, + {file = "pylint-3.2.3.tar.gz", hash = "sha256:02f6c562b215582386068d52a30f520d84fdbcf2a95fc7e855b816060d048b60"}, ] [package.dependencies] diff --git a/pytest-saas/pyproject.toml b/pytest-saas/pyproject.toml index 3fa1c87..e26808a 100644 --- a/pytest-saas/pyproject.toml +++ b/pytest-saas/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-exasol-saas" -version = "0.2.0" +version = "0.2.1" description = "" authors = ["Christoph Kuhnke "] readme = "README.md"