Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 7, 2024
2 parents 797cbfe + 886bb11 commit ee3cc30
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 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.7.0](changes_0.7.0.md)
* [0.6.0](changes_0.6.0.md)
* [0.5.0](changes_0.5.0.md)
* [0.4.0](changes_0.4.0.md)
Expand All @@ -14,6 +15,7 @@
hidden:
---
unreleased
changes_0.7.0
changes_0.6.0
changes_0.5.0
changes_0.4.0
Expand Down
13 changes: 13 additions & 0 deletions doc/changes/changes_0.7.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 0.7.0 - 2024-10-07

## Features

* #66: Implemented a standard CLI options builder.
* #70: Implemented a CLI callback function for the language container deployment.
* #69: Added create_bucketfs_location function.
* #75: Added create_bucketfs_location_from_conn_object function.
* #74: Implemented a CLI callback function for creating a bucket-fs connection object.

# Refactoring

* #68: Made open_pyexasol_connection(...) using kwargs derived from the cli options.
12 changes: 0 additions & 12 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,13 +1 @@
# Unreleased

## Features

* #66: Implemented a standard CLI options builder.
* #70: Implemented a CLI callback function for the language container deployment.
* #69: Added create_bucketfs_location function.
* #75: Added create_bucketfs_location_from_conn_object function.
* #74: Implemented a CLI callback function for creating a bucket-fs connection object.

# Refactoring

* #68: Made open_pyexasol_connection(...) using kwargs derived from the cli options.
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.6.0"
version = "0.7.0"
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 @@ -5,6 +5,6 @@
# Do not edit this file manually!
# 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 = 6
MINOR = 7
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 comments on commit ee3cc30

Please sign in to comment.