Skip to content

Commit 59e4d60

Browse files
authored
Prepare release 0.18.0 (#287)
1 parent 922385f commit 59e4d60

File tree

10 files changed

+27
-24
lines changed

10 files changed

+27
-24
lines changed

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* [unreleased](unreleased.md)
4+
* [0.18.0](changes_0.18.0.md)
45
* [0.17.0](changes_0.17.0.md)
56
* [0.16.0](changes_0.16.0.md)
67
* [0.15.0](changes_0.15.0.md)
@@ -26,6 +27,7 @@
2627
hidden:
2728
---
2829
unreleased
30+
changes_0.18.0
2931
changes_0.17.0
3032
changes_0.16.0
3133
changes_0.15.0

doc/changes/changes_0.18.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 0.18.0 - 2024-11-19
2+
3+
## ✨ Added
4+
5+
* Added support for Python 3.12 to check.yml build matrices
6+
7+
## 🔧 Changed
8+
9+
* Updated gh-pages workflow to use the new multiversion nox task target
10+
11+
## 🐞 Fixed
12+
13+
* Removed the `test` file filter from `lint:security`

doc/changes/unreleased.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
11
# Unreleased
2-
3-
## ✨ Added
4-
5-
* Added support for Python 3.12 to check.yml build matrices
6-
7-
## 🔧 Changed
8-
9-
* Updated gh-pages workflow to use the new multiversion nox task target
10-
11-
## 🐞 Fixed
12-
13-
* Removed the `test` file filter from `lint:security`

exasol/toolbox/templates/github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
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.17.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
2121

2222
- name: Build Artifacts
2323
run: poetry build

exasol/toolbox/templates/github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
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.17.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
1818

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

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Setup Python & Poetry Environment
22-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
22+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
2323

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

4242
- name: Setup Python & Poetry Environment
43-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
43+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
4444

4545
- name: Build Documentation
4646
run: |
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/checkout@v4
6161

6262
- name: Setup Python & Poetry Environment
63-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
63+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666

@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/checkout@v4
8989

9090
- name: Setup Python & Poetry Environment
91-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
91+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494

@@ -109,7 +109,7 @@ jobs:
109109
uses: actions/checkout@v4
110110

111111
- name: Setup Python & Poetry Environment
112-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
112+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
113113
with:
114114
python-version: ${{ matrix.python-version }}
115115

@@ -140,7 +140,7 @@ jobs:
140140
uses: actions/checkout@v4
141141

142142
- name: Setup Python & Poetry Environment
143-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
143+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
144144
with:
145145
python-version: ${{ matrix.python-version }}
146146

exasol/toolbox/templates/github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717

1818
- name: Setup Python & Poetry Environment
19-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
2020

2121
- name: Build Documentation
2222
run: |

exasol/toolbox/templates/github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Setup Python & Poetry Environment
23-
uses: exasol/python-toolbox/.github/actions/python-environment@0.17.0
23+
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0
2424

2525
- name: Download Artifacts
2626
uses: actions/download-artifact@v4.1.8

exasol/toolbox/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 17
8+
MINOR = 18
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "exasol-toolbox"
33
packages = [
44
{ include = "exasol" },
55
]
6-
version = "0.17.0"
6+
version = "0.18.0"
77
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project."
88
authors = [
99
"Nicola Coretti <nicola.coretti@exasol.com>"

0 commit comments

Comments
 (0)