From 886bb1165f40e0370cd0bfa4ed6a555b17aae564 Mon Sep 17 00:00:00 2001 From: Mikhail Beck Date: Mon, 7 Oct 2024 09:43:11 +0100 Subject: [PATCH] Release/prepare 0.7.0 (#77) * Add documentation build folder to .gitignore * #75 Added SaaS tests --- doc/changes/changelog.md | 2 ++ doc/changes/changes_0.7.0.md | 13 +++++++++++++ doc/changes/unreleased.md | 12 ------------ pyproject.toml | 2 +- version.py | 2 +- 5 files changed, 17 insertions(+), 14 deletions(-) create mode 100644 doc/changes/changes_0.7.0.md diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index 5d7fb06..e0fdb7d 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -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) @@ -14,6 +15,7 @@ hidden: --- unreleased +changes_0.7.0 changes_0.6.0 changes_0.5.0 changes_0.4.0 diff --git a/doc/changes/changes_0.7.0.md b/doc/changes/changes_0.7.0.md new file mode 100644 index 0000000..2f5bb14 --- /dev/null +++ b/doc/changes/changes_0.7.0.md @@ -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. diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index b1eab54..79e701b 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 3d9943f..33e853e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] diff --git a/version.py b/version.py index 93ad63e..2c30ed8 100644 --- a/version.py +++ b/version.py @@ -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}"