Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/prepare 0.2.0 #25

Merged
merged 10 commits into from
Jun 13, 2024
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# 📝 Changes

* [unreleased](unreleased.md)
* [0.2.0](changes_0.2.0.md)
* [0.1.0](changes_0.1.0.md)

```{toctree}
---
hidden:
---
unreleased
changes_0.2.0
changes_0.1.0
18 changes: 18 additions & 0 deletions doc/changes/changes_0.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 0.2.0 - 2024-06-12

## Added

* Integration tests for class `LanguageContainerDeployer` and CLI-function `language_container_deployer_main`.
* Started using the bucket-fs PathLike interface.
* Added support SaaS backend
* Added the container deployment validation functions. This includes waiting until the deployment appears to be completed. The deployer now by default uses this functionality.

## Refactorings

* #15: Used plugin pytest-saas


## Documentation

* #21: Added a user guide.
* #22: Added comment on using fixtures from pytest-plugin `pytest-exasol-saas`.
16 changes: 0 additions & 16 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
# Unreleased

## Added

* Integration tests for class `LanguageContainerDeployer` and CLI-function `language_container_deployer_main`.
* Started using the bucket-fs PathLike interface.
* Added support SaaS backend
* Added the container deployment validation functions. This includes waiting until the deployment appears to be completed. The deployer now by default uses this functionality.

## Refactorings

* #15: Used plugin pytest-saas


## Documentation

* #22: Added comment on using fixtures from pytest-plugin `pytest-exasol-saas`
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-extension-common"
version = "0.1.0"
name = "exasol-python-extension-common"
version = "0.2.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 = 1
MINOR = 2
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
Loading