Skip to content

Commit 6b8f87e

Browse files
authored
Release/prepare 0.7.0 (#66)
* Prepare release 0.7.0 * Updated dependencies * Updated generated API * Updated PTB version in github workflows
1 parent e368cc3 commit 6b8f87e

19 files changed

+565
-285
lines changed

.github/workflows/build-and-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
2121

2222
- name: Build Artifacts
2323
run: poetry build

.github/workflows/check-release-tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Setup Python & Poetry Environment
17-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
1818

1919
- name: Check Tag Version
2020
# make sure the pushed/created tag matched the project version

.github/workflows/checks.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
18+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
1919

2020
- name: Check Version(s)
2121
run: poetry run version-check version.py
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Setup Python & Poetry Environment
33-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
33+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
3434

3535
- name: Build Documentation
3636
run: |
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v4
5151

5252
- name: Setup Python & Poetry Environment
53-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
53+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v4
7272

7373
- name: Setup Python & Poetry Environment
74-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
74+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
7575
with:
7676
python-version: ${{ matrix.python-version }}
7777

.github/workflows/gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v4
1313

1414
- name: Setup Python & Poetry Environment
15-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
15+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
1616

1717
- name: Build Documentation
1818
run: |

.github/workflows/report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323

2424
- name: Setup Python & Poetry Environment
25-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
25+
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
2626

2727
- name: Download Artifacts
2828
uses: actions/download-artifact@v3

doc/changes/changelog.md

+2
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

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 0.7.0 - 2024-06-06
2+
3+
## Refactoring
4+
5+
* #53: Separated long-running tests
6+
* Updated GitHub workflow to upload `openapi.json` as artifact
7+
* #61: Restricted upload of `openapi.json` to failures
8+
9+
## Features
10+
11+
* #55 Added publicly callable function finding the database id from its name.
12+
* #60: Added download of `openapi.json` when generating python client
13+
* #64: Add an optional idle time parameter to the database factory.
14+
15+
## Documentation
16+
17+
* Updated instructions for triggering slow tests in Developer Guide

doc/changes/unreleased.md

-16
Original file line numberDiff line numberDiff line change
@@ -1,17 +1 @@
11
# Unreleased
2-
3-
## Refactoring
4-
5-
* #53: Separated long-running tests
6-
* Updated GitHub workflow to upload `openapi.json` as artifact
7-
* #61: Restricted upload of `openapi.json` to failures
8-
9-
## Features
10-
11-
* #55 Added publicly callable function finding the database id from its name.
12-
* #60: Added download of `openapi.json` when generating python client
13-
* #64: Add an optional idle time parameter to the database factory.
14-
15-
## Documentation
16-
17-
* Updated instructions for triggering slow tests in Developer Guide

exasol/saas/client/openapi/models/__init__.py

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

exasol/saas/client/openapi/models/cluster.py

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

exasol/saas/client/openapi/models/cluster_settings.py

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

exasol/saas/client/openapi/models/cluster_settings_update.py

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

0 commit comments

Comments
 (0)