Skip to content

Commit ee3cc30

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 797cbfe + 886bb11 commit ee3cc30

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
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.7.0](changes_0.7.0.md)
45
* [0.6.0](changes_0.6.0.md)
56
* [0.5.0](changes_0.5.0.md)
67
* [0.4.0](changes_0.4.0.md)
@@ -14,6 +15,7 @@
1415
hidden:
1516
---
1617
unreleased
18+
changes_0.7.0
1719
changes_0.6.0
1820
changes_0.5.0
1921
changes_0.4.0

doc/changes/changes_0.7.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 0.7.0 - 2024-10-07
2+
3+
## Features
4+
5+
* #66: Implemented a standard CLI options builder.
6+
* #70: Implemented a CLI callback function for the language container deployment.
7+
* #69: Added create_bucketfs_location function.
8+
* #75: Added create_bucketfs_location_from_conn_object function.
9+
* #74: Implemented a CLI callback function for creating a bucket-fs connection object.
10+
11+
# Refactoring
12+
13+
* #68: Made open_pyexasol_connection(...) using kwargs derived from the cli options.

doc/changes/unreleased.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
11
# Unreleased
2-
3-
## Features
4-
5-
* #66: Implemented a standard CLI options builder.
6-
* #70: Implemented a CLI callback function for the language container deployment.
7-
* #69: Added create_bucketfs_location function.
8-
* #75: Added create_bucketfs_location_from_conn_object function.
9-
* #74: Implemented a CLI callback function for creating a bucket-fs connection object.
10-
11-
# Refactoring
12-
13-
* #68: Made open_pyexasol_connection(...) using kwargs derived from the cli options.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "exasol-python-extension-common"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "A collection of common utilities for Exasol extensions."
55
packages = [ {include = "exasol"}, ]
66
authors = ["Mikhail Beck <[email protected]>"]

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
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 = 6
8+
MINOR = 7
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 commit comments

Comments
 (0)