Skip to content

Commit

Permalink
Prepare release 0.3.1 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki authored Jul 11, 2024
1 parent e11ee86 commit 995b259
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -10,6 +11,7 @@
hidden:
---
unreleased
changes_0.3.1
changes_0.3.0
changes_0.2.0
changes_0.1.0
7 changes: 7 additions & 0 deletions doc/changes/changes_0.3.1.md
Original file line number Diff line number Diff line change
@@ -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`
6 changes: 0 additions & 6 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -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`
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

0 comments on commit 995b259

Please sign in to comment.