Skip to content

Commit f1b47d8

Browse files
authored
Prepare release 0.21.0 (#361)
1 parent ebdc894 commit f1b47d8

File tree

14 files changed

+48
-45
lines changed

14 files changed

+48
-45
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.21.0](changes_0.21.0.md)
45
* [0.20.0](changes_0.20.0.md)
56
* [0.19.0](changes_0.19.0.md)
67
* [0.18.0](changes_0.18.0.md)
@@ -29,6 +30,7 @@
2930
hidden:
3031
---
3132
unreleased
33+
changes_0.21.0
3234
changes_0.20.0
3335
changes_0.19.0
3436
changes_0.18.0

doc/changes/changes_0.21.0.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# 0.21.0 - 2025-02-25
2+
3+
## ✨ Features
4+
5+
* Added tbx task for markdown formating of .lint.json
6+
* Added a Nox task for dependencies packages and their licenses with Markdown output
7+
* [#293](https://github.com/exasol/python-toolbox/issues/293): Added `py.typed` file
8+
9+
## 🐞 Fixed
10+
* Fixed an issue in the CI workflow that caused it to be executed twice on the initial push of a PR if the PR branch was on the repo itself.
11+
12+
🚨 Attention: Due to these changes, the workflows will no longer be executed if the PR comes from a branch not located in this repository.
13+
As third-party contributions from outside forks are rare to nearly non-existent, this downside was considered a reasonable trade-off at this time.
14+
15+
## 📚 Documentation
16+
* Updated design doc (Added known Issues)
17+
* Updated migration progress table
18+
* Updated the FAQ with an entry about the ``isort`` compatibility issue
19+
* [#351](https://github.com/exasol/python-toolbox/issues/351), [#352](https://github.com/exasol/python-toolbox/issues/352): updated user guide
20+
21+
## 🔧 Changed
22+
* Updated `actions/upload-artifacts` version to `4.6.0`
23+
24+
## 🔩 Internal
25+
* Relocked dependencies
26+
* Update referenced github actions
27+
28+
## ⚒️ Refactorings
29+
* [#339](https://github.com/exasol/python-toolbox/issues/339): Secret ALTERNATIVE_GITHUB_TOKEN removed from GitHub workflows

doc/changes/unreleased.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1 @@
11
# Unreleased
2-
3-
## ✨ Features
4-
5-
* Added tbx task for markdown formating of .lint.json
6-
* Added a Nox task for dependencies packages and their licenses with Markdown output
7-
* [#293](https://github.com/exasol/python-toolbox/issues/293): Added `py.typed` file
8-
9-
## 🐞 Fixed
10-
* Fixed an issue in the CI workflow that caused it to be executed twice on the initial push of a PR if the PR branch was on the repo itself.
11-
12-
🚨 Attention: Due to these changes, the workflows will no longer be executed if the PR comes from a branch not located in this repository.
13-
As third-party contributions from outside forks are rare to nearly non-existent, this downside was considered a reasonable trade-off at this time.
14-
15-
## 📚 Documentation
16-
* Updated design doc (Added known Issues)
17-
* Updated migration progress table
18-
* Updated the FAQ with an entry about the ``isort`` compatibility issue
19-
* [#351](https://github.com/exasol/python-toolbox/issues/351), [#352](https://github.com/exasol/python-toolbox/issues/352): updated user guide
20-
21-
## 🔧 Changed
22-
* Updated `actions/upload-artifacts` version to `4.6.0`
23-
24-
## 🔩 Internal
25-
* Relocked dependencies
26-
* Update referenced github actions
27-
28-
## ⚒️ Refactorings
29-
* [#339](https://github.com/exasol/python-toolbox/issues/339): Secret ALTERNATIVE_GITHUB_TOKEN removed from GitHub workflows

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.20.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.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.20.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.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: 7 additions & 7 deletions
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.20.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
2020

2121
- name: Check Version(s)
2222
run: |
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Setup Python & Poetry Environment
40-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
40+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
4141

4242
- name: Build Documentation
4343
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.20.0
63+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666

@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/checkout@v4
9090

9191
- name: Setup Python & Poetry Environment
92-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
92+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
9393
with:
9494
python-version: ${{ matrix.python-version }}
9595

@@ -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.20.0
112+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
113113
with:
114114
python-version: ${{ matrix.python-version }}
115115

@@ -132,7 +132,7 @@ jobs:
132132
uses: actions/checkout@v4
133133

134134
- name: Setup Python & Poetry Environment
135-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
135+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
136136
with:
137137
python-version: "3.9"
138138

@@ -154,7 +154,7 @@ jobs:
154154
uses: actions/checkout@v4
155155

156156
- name: Setup Python & Poetry Environment
157-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
157+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
158158
with:
159159
python-version: ${{ matrix.python-version }}
160160

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.20.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
2020

2121
- name: Build Documentation
2222
run: |

exasol/toolbox/templates/github/workflows/matrix-all.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.20.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
2121

2222
- name: Generate matrix
2323
run: poetry run nox -s matrix:all

exasol/toolbox/templates/github/workflows/matrix-exasol.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.20.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
2121

2222
- name: Generate matrix
2323
run: poetry run nox -s matrix:exasol

exasol/toolbox/templates/github/workflows/matrix-python.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.20.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
2121

2222
- name: Generate matrix
2323
run: poetry run nox -s matrix:python

0 commit comments

Comments
 (0)