Skip to content

Commit

Permalink
Release/prepare 0.7.0 (#66)
Browse files Browse the repository at this point in the history
* Prepare release 0.7.0
* Updated dependencies
* Updated generated API
* Updated PTB version in github workflows
  • Loading branch information
ckunki authored Jun 7, 2024
1 parent e368cc3 commit 6b8f87e
Show file tree
Hide file tree
Showing 19 changed files with 565 additions and 285 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v4

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

- name: Build Artifacts
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

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

- name: Check Tag Version
# make sure the pushed/created tag matched the project version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0

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

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

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

- name: Build Documentation
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v4

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

Expand All @@ -71,7 +71,7 @@ jobs:
uses: actions/checkout@v4

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4

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

- name: Build Documentation
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0

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

- name: Download Artifacts
uses: actions/download-artifact@v3
Expand Down
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
17 changes: 17 additions & 0 deletions doc/changes/changes_0.7.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 0.7.0 - 2024-06-06

## Refactoring

* #53: Separated long-running tests
* Updated GitHub workflow to upload `openapi.json` as artifact
* #61: Restricted upload of `openapi.json` to failures

## Features

* #55 Added publicly callable function finding the database id from its name.
* #60: Added download of `openapi.json` when generating python client
* #64: Add an optional idle time parameter to the database factory.

## Documentation

* Updated instructions for triggering slow tests in Developer Guide
16 changes: 0 additions & 16 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
# Unreleased

## Refactoring

* #53: Separated long-running tests
* Updated GitHub workflow to upload `openapi.json` as artifact
* #61: Restricted upload of `openapi.json` to failures

## Features

* #55 Added publicly callable function finding the database id from its name.
* #60: Added download of `openapi.json` when generating python client
* #64: Add an optional idle time parameter to the database factory.

## Documentation

* Updated instructions for triggering slow tests in Developer Guide
4 changes: 4 additions & 0 deletions exasol/saas/client/openapi/models/__init__.py

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

14 changes: 14 additions & 0 deletions exasol/saas/client/openapi/models/cluster.py

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

65 changes: 65 additions & 0 deletions exasol/saas/client/openapi/models/cluster_settings.py

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

68 changes: 68 additions & 0 deletions exasol/saas/client/openapi/models/cluster_settings_update.py

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

Loading

0 comments on commit 6b8f87e

Please sign in to comment.