From cadcdd6afa76ca40c112acfbf876bac41b8517fe Mon Sep 17 00:00:00 2001 From: Ariel Schulz Date: Fri, 27 Jun 2025 08:49:04 +0200 Subject: [PATCH 1/3] Re-add missed inheritance secret --- .github/workflows/pr-merge.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-merge.yml b/.github/workflows/pr-merge.yml index a95cee5..0a85a6d 100644 --- a/.github/workflows/pr-merge.yml +++ b/.github/workflows/pr-merge.yml @@ -14,6 +14,7 @@ jobs: ci-job: name: Checks uses: ./.github/workflows/checks.yml + secrets: inherit permissions: contents: read From 6af0335b3f92a760ec02a4242bca0847a09622de Mon Sep 17 00:00:00 2001 From: Ariel Schulz Date: Fri, 27 Jun 2025 08:49:13 +0200 Subject: [PATCH 2/3] Prepare release 2.1.0 --- doc/changes/changelog.md | 2 ++ doc/changes/changes_2.1.0.md | 10 ++++++++++ doc/changes/unreleased.md | 9 --------- pyproject.toml | 2 +- version.py | 2 +- 5 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 doc/changes/changes_2.1.0.md diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index 2512f71..70c1601 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changes * [unreleased](unreleased.md) +* [2.1.0](changes_2.1.0.md) * [2.0.0](changes_2.0.0.md) * [1.1.1](changes_1.1.1.md) * [1.1.0](changes_1.1.0.md) @@ -22,6 +23,7 @@ hidden: --- unreleased +changes_2.1.0 changes_2.0.0 changes_1.1.1 changes_1.1.0 diff --git a/doc/changes/changes_2.1.0.md b/doc/changes/changes_2.1.0.md new file mode 100644 index 0000000..fe8370b --- /dev/null +++ b/doc/changes/changes_2.1.0.md @@ -0,0 +1,10 @@ +# 2.1.0 - 2025-06-27 + +This release updates the Python API generated from file `openapi.json` & the minimum +version allowed for requests. + +Changes to `open-api.json` in detail: + +## Refactorings + +* #105: Updated open API client diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 4a4b02b..79e701b 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,10 +1 @@ # Unreleased - -This release updates the Python API generated from file `openapi.json` & the minimum -version allowed for requests. - -Changes to `open-api.json` in detail: - -## Refactorings - -* #105: Updated open API client \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f1494ed..aab6bce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "exasol-saas-api" -version = "2.0.0" +version = "2.1.0" description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services" authors = [ {name="Christoph Kuhnke", email="christoph.kuhnke@exasol.com"}, diff --git a/version.py b/version.py index 4f01eba..1ec4a91 100644 --- a/version.py +++ b/version.py @@ -5,7 +5,7 @@ # Do not edit this file manually! # If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`. MAJOR = 2 -MINOR = 0 +MINOR = 1 PATCH = 0 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" __version__ = VERSION From 5dada80e6afd0291c7db18f34b68639f2e31300a Mon Sep 17 00:00:00 2001 From: Ariel Schulz Date: Fri, 27 Jun 2025 08:55:36 +0200 Subject: [PATCH 3/3] Update changelog to reflect findings --- doc/changes/changes_2.1.0.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/doc/changes/changes_2.1.0.md b/doc/changes/changes_2.1.0.md index fe8370b..dd5fc1c 100644 --- a/doc/changes/changes_2.1.0.md +++ b/doc/changes/changes_2.1.0.md @@ -1,10 +1,8 @@ # 2.1.0 - 2025-06-27 -This release updates the Python API generated from file `openapi.json` & the minimum -version allowed for requests. +This release updates the the minimum version allowed for requests & the Python API +generated from file `openapi.json` to meet current formatting standards. -Changes to `open-api.json` in detail: +## Security -## Refactorings - -* #105: Updated open API client +* #105: Dependencies updated, especially requests (2.31.0 -> 2.32.4)