From 995b259fd26200e7c47e5a830fa3972165a5c32e Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Thu, 11 Jul 2024 11:14:26 +0200 Subject: [PATCH] Prepare release 0.3.1 (#39) --- doc/changes/changelog.md | 2 ++ doc/changes/changes_0.3.1.md | 7 +++++++ doc/changes/unreleased.md | 6 ------ pyproject.toml | 2 +- version.py | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 doc/changes/changes_0.3.1.md diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index aecf611..dd59d91 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # 📝 Changes * [unreleased](unreleased.md) +* [0.3.1](changes_0.3.1.md) * [0.3.0](changes_0.3.0.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.3.1 changes_0.3.0 changes_0.2.0 changes_0.1.0 diff --git a/doc/changes/changes_0.3.1.md b/doc/changes/changes_0.3.1.md new file mode 100644 index 0000000..0734e10 --- /dev/null +++ b/doc/changes/changes_0.3.1.md @@ -0,0 +1,7 @@ +# 0.3.1 - 2024-07-11 + +## Security Issues + +* Fixed vulnerabilities by updating dependencies + * Vulnerability CVE-2024-21503 in transitive dependency via `exasol-toolbox` to `black` in versions below `24.3.0` + * Vulnerability CVE-2024-35195 in dependency `requests` in versions below `2.32.0` caused by requests `Session` object not verifying requests after making first request with `verify=False` \ No newline at end of file diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 64b5bb2..79e701b 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,7 +1 @@ # Unreleased - -## Security Issues - -* Fixed vulnerabilities by updating dependencies - * Vulnerability CVE-2024-21503 in transitive dependency via `exasol-toolbox` to `black` in versions below `24.3.0` - * Vulnerability CVE-2024-35195 in dependency `requests` in versions below `2.32.0` caused by requests `Session` object not verifying requests after making first request with `verify=False` diff --git a/pyproject.toml b/pyproject.toml index 4333838..880b447 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "exasol-python-extension-common" -version = "0.3.0" +version = "0.3.1" description = "A collection of common utilities for Exasol extensions." packages = [ {include = "exasol"}, ] authors = ["Mikhail Beck "] diff --git a/version.py b/version.py index ff792e9..df9ecd5 100644 --- a/version.py +++ b/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 = 3 -PATCH = 0 +PATCH = 1 VERSION = f"{MAJOR}.{MINOR}.{PATCH}"