Skip to content

Commit 3f22cdf

Browse files
authored
Prepare release 0.9.0 (#95)
1 parent 1ef220f commit 3f22cdf

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 📝 Changes
22

33
* [unreleased](unreleased.md)
4+
* [0.9.0](changes_0.9.0.md)
45
* [0.8.0](changes_0.8.0.md)
56
* [0.7.0](changes_0.7.0.md)
67
* [0.6.0](changes_0.6.0.md)
@@ -16,6 +17,7 @@
1617
hidden:
1718
---
1819
unreleased
20+
changes_0.9.0
1921
changes_0.8.0
2022
changes_0.7.0
2123
changes_0.6.0

doc/changes/changes_0.9.0.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 0.9.0 - 2025-05-06
2+
3+
## Features
4+
5+
* #84 Added get_opt_name() and get_bool_opt_name() functions to the CLI framework.
6+
* #92 Added py.typed file
7+
8+
## Refactoring
9+
10+
* #48: Activated validation by verifying existence of file exasol-manifest.json
11+
* #90: Updated poetry to 2.1.2
12+
13+
## Security Issues
14+
15+
* Re-locked the dependencies (2025-02-11)
16+
* #90 Re-locked the dependencies (2025-04-10)
17+
* #93 Re-locked the dependencies (2025-05-06) for CVE-2025-43859

doc/changes/unreleased.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1 @@
11
# Unreleased
2-
3-
## Features
4-
5-
* #84 Added get_opt_name() and get_bool_opt_name() functions to the CLI framework.
6-
* #92 Added py.typed file
7-
8-
## Refactoring
9-
10-
* #48: Activated validation by verifying existence of file exasol-manifest.json
11-
* #90: Updated poetry to 2.1.2
12-
13-
## Security Issues
14-
15-
* Re-locked the dependencies (2025-02-11)
16-
* #90 Re-locked the dependencies (2025-04-10)
17-
* #93 Re-locked the dependencies (2025-05-06) for CVE-2025-43859

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "exasol-python-extension-common"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
requires-python = "^3.10.0"
55
description = "A collection of common utilities for Exasol extensions."
66
authors = [

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 8
8+
MINOR = 9
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
1111
__version__ = VERSION

0 commit comments

Comments
 (0)