diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index feb8e4068..1b03d06d2 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changelog * [unreleased](unreleased.md) +* [0.13.0](changes_0.13.0.md) * [0.12.0](changes_0.12.0.md) * [0.11.0](changes_0.11.0.md) * [0.10.0](changes_0.10.0.md) @@ -21,6 +22,7 @@ hidden: --- unreleased +changes_0.13.0 changes_0.12.0 changes_0.11.0 changes_0.10.0 diff --git a/doc/changes/changes_0.13.0.md b/doc/changes/changes_0.13.0.md new file mode 100644 index 000000000..8346c3707 --- /dev/null +++ b/doc/changes/changes_0.13.0.md @@ -0,0 +1,16 @@ +# 0.13.0 - 2024-06-06 + +## 🐞 Fixed + +* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required. + +## ✨ Feature + +* #162: Updated templates for GitHub workflows to inherit secrets by default +* #52: Add support for caching python dependencies in GitHub workflows + +## 📚 Documentation +* Updated information about nox tasks and `PYTHONPATH` setup + +## 🔩 Internal +* Relocked and updated dependencies \ No newline at end of file diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 51cd6571d..79e701b84 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,16 +1 @@ # Unreleased - -## 🐞 Fixed - -* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required. - -## ✨ Feature - -* #162: Updated templates for GitHub workflows to inherit secrets by default -* #52: Add support for caching python dependencies in GitHub workflows - -## 📚 Documentation -* Updated information about nox tasks and `PYTHONPATH` setup - -## 🔩 Internal -* Relocked and updated dependencies diff --git a/exasol/toolbox/templates/github/workflows/build-and-publish.yml b/exasol/toolbox/templates/github/workflows/build-and-publish.yml index 03a70cedd..c8e36111a 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@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - 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 a3cc71428..a5baa83f0 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@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - 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 3e769a4a7..71afe032d 100644 --- a/exasol/toolbox/templates/github/workflows/checks.yml +++ b/exasol/toolbox/templates/github/workflows/checks.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - name: Check Version(s) run: poetry run version-check <> @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - name: Build Documentation run: | @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 with: python-version: ${{ matrix.python-version }} @@ -77,7 +77,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 with: python-version: ${{ matrix.python-version }} @@ -99,7 +99,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 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 0fe591b91..c0cbb6099 100644 --- a/exasol/toolbox/templates/github/workflows/gh-pages.yml +++ b/exasol/toolbox/templates/github/workflows/gh-pages.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - name: Build Documentation run: | diff --git a/exasol/toolbox/templates/github/workflows/report.yml b/exasol/toolbox/templates/github/workflows/report.yml index 4a006e87a..4a6381280 100644 --- a/exasol/toolbox/templates/github/workflows/report.yml +++ b/exasol/toolbox/templates/github/workflows/report.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 + uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - name: Download Artifacts uses: actions/download-artifact@v3 diff --git a/exasol/toolbox/version.py b/exasol/toolbox/version.py index 14e287e53..9ac5e2326 100644 --- a/exasol/toolbox/version.py +++ b/exasol/toolbox/version.py @@ -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 = 12 +MINOR = 13 PATCH = 0 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" diff --git a/pyproject.toml b/pyproject.toml index aef5167bc..db9fc8edb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "exasol-toolbox" packages = [ { include = "exasol" }, ] -version = "0.12.0" +version = "0.13.0" description = "" authors = [ "Nicola Coretti "