diff --git a/.github/actions/security-issues/action.yml b/.github/actions/security-issues/action.yml index 9cca75c4a..b3b2c0354 100644 --- a/.github/actions/security-issues/action.yml +++ b/.github/actions/security-issues/action.yml @@ -39,7 +39,7 @@ runs: - name: Install Python Toolbox / Security tool shell: bash run: | - pip install exasol-toolbox==1.0.0 + pip install exasol-toolbox==1.0.1 - name: Create Security Issue Report shell: bash diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index ed43ff9b5..c7cba486e 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changelog * [unreleased](unreleased.md) +* [1.0.1](changes_1.0.1.md) * [1.0.0](changes_1.0.0.md) * [0.21.0](changes_0.21.0.md) * [0.20.0](changes_0.20.0.md) @@ -31,6 +32,7 @@ hidden: --- unreleased +changes_1.0.1 changes_1.0.0 changes_0.21.0 changes_0.20.0 diff --git a/doc/changes/changes_1.0.1.md b/doc/changes/changes_1.0.1.md new file mode 100644 index 000000000..f6a96240a --- /dev/null +++ b/doc/changes/changes_1.0.1.md @@ -0,0 +1,10 @@ +# 1.0.1 - 2025-04-11 + +## Bugfixes + +* #397: Fixed handling empty coverage +* #403: Removed unneeded `poetry run` from internal code of nox tasks + +## Refactorings + +* #399: Modified `release:prepare` to update `.github/actions` with new PTB version diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 5395286c7..79e701b84 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,10 +1 @@ # Unreleased - -## Bugfixes - -* #397: Fixed handling empty coverage -* #403: Removed unneeded `poetry run` from internal code of nox tasks - -## Refactorings - -* #399: Modified `release:prepare` to update `.github/actions` with new PTB version \ No newline at end of file diff --git a/exasol/toolbox/templates/github/workflows/build-and-publish.yml b/exasol/toolbox/templates/github/workflows/build-and-publish.yml index 39fcac149..2487c7a40 100644 --- a/exasol/toolbox/templates/github/workflows/build-and-publish.yml +++ b/exasol/toolbox/templates/github/workflows/build-and-publish.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Build Artifacts run: poetry build diff --git a/exasol/toolbox/templates/github/workflows/check-release-tag.yml b/exasol/toolbox/templates/github/workflows/check-release-tag.yml index a4f8e2e3b..2ab47a103 100644 --- a/exasol/toolbox/templates/github/workflows/check-release-tag.yml +++ b/exasol/toolbox/templates/github/workflows/check-release-tag.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Check Tag Version # make sure the pushed/created tag matched the project version diff --git a/exasol/toolbox/templates/github/workflows/checks.yml b/exasol/toolbox/templates/github/workflows/checks.yml index 1becc48c4..f5ba4dfa6 100644 --- a/exasol/toolbox/templates/github/workflows/checks.yml +++ b/exasol/toolbox/templates/github/workflows/checks.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Check Version(s) run: | @@ -37,7 +37,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Build Documentation run: | @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Run changelog update check run: poetry run -- nox -s changelog:updated @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 with: python-version: ${{ matrix.python-version }} @@ -104,7 +104,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 with: python-version: ${{ matrix.python-version }} @@ -124,7 +124,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 with: python-version: ${{ matrix.python-version }} @@ -147,7 +147,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Run format check run: poetry run -- nox -s project:format @@ -167,7 +167,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 with: python-version: ${{ matrix.python-version }} diff --git a/exasol/toolbox/templates/github/workflows/gh-pages.yml b/exasol/toolbox/templates/github/workflows/gh-pages.yml index 5b80767d2..9a9f38bd2 100644 --- a/exasol/toolbox/templates/github/workflows/gh-pages.yml +++ b/exasol/toolbox/templates/github/workflows/gh-pages.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Build Documentation run: | diff --git a/exasol/toolbox/templates/github/workflows/matrix-all.yml b/exasol/toolbox/templates/github/workflows/matrix-all.yml index 2e0ed37d0..432c0bf5b 100644 --- a/exasol/toolbox/templates/github/workflows/matrix-all.yml +++ b/exasol/toolbox/templates/github/workflows/matrix-all.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Generate matrix run: poetry run -- nox -s matrix:all diff --git a/exasol/toolbox/templates/github/workflows/matrix-exasol.yml b/exasol/toolbox/templates/github/workflows/matrix-exasol.yml index d3d8a9533..8f5454fc3 100644 --- a/exasol/toolbox/templates/github/workflows/matrix-exasol.yml +++ b/exasol/toolbox/templates/github/workflows/matrix-exasol.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Generate matrix run: poetry run -- nox -s matrix:exasol diff --git a/exasol/toolbox/templates/github/workflows/matrix-python.yml b/exasol/toolbox/templates/github/workflows/matrix-python.yml index 73a2fc2fa..59729f3ae 100644 --- a/exasol/toolbox/templates/github/workflows/matrix-python.yml +++ b/exasol/toolbox/templates/github/workflows/matrix-python.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Generate matrix run: poetry run -- nox -s matrix:python diff --git a/exasol/toolbox/templates/github/workflows/report.yml b/exasol/toolbox/templates/github/workflows/report.yml index b7a513232..903aeba71 100644 --- a/exasol/toolbox/templates/github/workflows/report.yml +++ b/exasol/toolbox/templates/github/workflows/report.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 - name: Download Artifacts uses: actions/download-artifact@v4.1.8 diff --git a/exasol/toolbox/templates/github/workflows/slow-checks.yml b/exasol/toolbox/templates/github/workflows/slow-checks.yml index 08c413308..a89c05103 100644 --- a/exasol/toolbox/templates/github/workflows/slow-checks.yml +++ b/exasol/toolbox/templates/github/workflows/slow-checks.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0 + uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1 with: python-version: ${{ matrix.python-version }} diff --git a/exasol/toolbox/version.py b/exasol/toolbox/version.py index ab2998a7f..78ea25efe 100644 --- a/exasol/toolbox/version.py +++ b/exasol/toolbox/version.py @@ -6,6 +6,6 @@ # If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`. MAJOR = 1 MINOR = 0 -PATCH = 0 +PATCH = 1 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" __version__ = VERSION diff --git a/pyproject.toml b/pyproject.toml index c98711654..5b8a88a7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "exasol-toolbox" -version = "1.0.0" +version = "1.0.1" description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." authors = [ {name = "Nicola Coretti", email = "nicola.coretti@exasol.com"},