Skip to content

Commit

Permalink
Prepare release 0.17.0 (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti authored Nov 18, 2024
1 parent 2b6585b commit aadf177
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 24 deletions.
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

* [unreleased](unreleased.md)
* [0.17.0](changes_0.17.0.md)
* [0.16.0](changes_0.16.0.md)
* [0.15.0](changes_0.15.0.md)
* [0.14.0](changes_0.14.0.md)
Expand All @@ -25,6 +26,7 @@
hidden:
---
unreleased
changes_0.17.0
changes_0.16.0
changes_0.15.0
changes_0.14.0
Expand Down
13 changes: 13 additions & 0 deletions doc/changes/changes_0.17.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 0.17.0 - 2024-11-18

## 🐞 Fixed

* Fixed the issue with publishing new documentation after releasing a new version
* Fixed the issue where master/main was not part of the multiversion documentation

## ✨ Added

* #149: Added nox task to lint imports
* Added support to manually trigger documentation build
* #248: Added security results to workflow summary
* #233: Added nox task to verify dependency declarations
12 changes: 0 additions & 12 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,13 +1 @@
# Unreleased

## 🐞 Fixed

* Fixed the issue with publishing new documentation after releasing a new version
* Fixed the issue where master/main was not part of the multiversion documentation

## ✨ Added

* #149: Added nox task to lint imports
* Added support to manually trigger documentation build
* #248: Added security results to workflow summary
* #233: Added nox task to verify dependency declarations
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.16.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0

- name: Build Artifacts
run: poetry build
Expand Down
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.16.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0

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

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

- name: Check Version(s)
run: poetry run version-check `poetry run python -c "from noxconfig import PROJECT_CONFIG; print(PROJECT_CONFIG.version_file)"`
Expand All @@ -40,7 +40,7 @@ jobs:
uses: actions/checkout@v4

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

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

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

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
uses: actions/checkout@v4

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

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

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

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
uses: actions/checkout@v4

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

Expand Down
2 changes: 1 addition & 1 deletion exasol/toolbox/templates/github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0

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

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

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

- name: Download Artifacts
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion exasol/toolbox/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 16
MINOR = 17
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "exasol-toolbox"
packages = [
{ include = "exasol" },
]
version = "0.16.0"
version = "0.17.0"
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project."
authors = [
"Nicola Coretti <[email protected]>"
Expand Down

0 comments on commit aadf177

Please sign in to comment.