Skip to content

Commit 177d18f

Browse files
authored
Prepare release 0.11.0 (#112)
1 parent d74f736 commit 177d18f

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
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.11.0](changes_0.11.0.md)
45
* [0.10.0](changes_0.10.0.md)
56
* [0.9.0](changes_0.9.0.md)
67
* [0.8.0](changes_0.8.0.md)
@@ -18,6 +19,7 @@
1819
hidden:
1920
---
2021
unreleased
22+
changes_0.11.0
2123
changes_0.10.0
2224
changes_0.9.0
2325
changes_0.8.0

doc/changes/changes_0.11.0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# 0.11.0 - 2025-07-22
2+
3+
This release allows to disable printing the alter session/system info when running the LanguageContainerDeployer.
4+
Also, it supports a flag which allows to select the compression strategy during the export of a Script-Languages-Container.
5+
Besides, the release updates the Python dependencies.
6+
7+
## Refactorings
8+
9+
- #106: Updated dependencies
10+
11+
## Features
12+
13+
- #107: Add parameter to disable printing the alter session/system info
14+
- #109: Added flag which allows to select compression strategy of SLC during export

doc/changes/unreleased.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
# Unreleased
2-
3-
4-
## Refactorings
5-
6-
- #106: Updated dependencies
7-
8-
## Features
9-
10-
- #109: Added flag which allows to select compression strategy of SLC during export

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.10.0"
3+
version = "0.11.0"
44
requires-python = ">=3.10,<4.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
@@ -8,7 +8,7 @@
88
"""
99

1010
MAJOR = 0
11-
MINOR = 10
11+
MINOR = 11
1212
PATCH = 0
1313
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
1414
__version__ = VERSION

0 commit comments

Comments
 (0)