Skip to content

Commit 4584c96

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 8c40fad + 4c10fda commit 4584c96

File tree

6 files changed

+25
-21
lines changed

6 files changed

+25
-21
lines changed

doc/changes/changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# 📝 Changes
22

33
* [unreleased](unreleased.md)
4+
* [0.2.0](changes_0.2.0.md)
45
* [0.1.0](changes_0.1.0.md)
56

67
```{toctree}
78
---
89
hidden:
910
---
1011
unreleased
12+
changes_0.2.0
1113
changes_0.1.0

doc/changes/changes_0.2.0.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 0.2.0 - 2024-06-12
2+
3+
## Added
4+
5+
* Integration tests for class `LanguageContainerDeployer` and CLI-function `language_container_deployer_main`.
6+
* Started using the bucket-fs PathLike interface.
7+
* Added support SaaS backend
8+
* Added the container deployment validation functions. This includes waiting until the deployment appears to be completed. The deployer now by default uses this functionality.
9+
10+
## Refactorings
11+
12+
* #15: Used plugin pytest-saas
13+
14+
15+
## Documentation
16+
17+
* #21: Added a user guide.
18+
* #22: Added comment on using fixtures from pytest-plugin `pytest-exasol-saas`.

doc/changes/unreleased.md

-16
Original file line numberDiff line numberDiff line change
@@ -1,17 +1 @@
11
# Unreleased
2-
3-
## Added
4-
5-
* Integration tests for class `LanguageContainerDeployer` and CLI-function `language_container_deployer_main`.
6-
* Started using the bucket-fs PathLike interface.
7-
* Added support SaaS backend
8-
* Added the container deployment validation functions. This includes waiting until the deployment appears to be completed. The deployer now by default uses this functionality.
9-
10-
## Refactorings
11-
12-
* #15: Used plugin pytest-saas
13-
14-
15-
## Documentation
16-
17-
* #22: Added comment on using fixtures from pytest-plugin `pytest-exasol-saas`

poetry.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

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

version.py

+1-1
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 = 1
8+
MINOR = 2
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 commit comments

Comments
 (0)