Skip to content

Commit 0e157f8

Browse files
authored
Prepare release 1.0.0 (#396)
1 parent 95f0402 commit 0e157f8

File tree

14 files changed

+43
-40
lines changed

14 files changed

+43
-40
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+
* [1.0.0](changes_1.0.0.md)
45
* [0.21.0](changes_0.21.0.md)
56
* [0.20.0](changes_0.20.0.md)
67
* [0.19.0](changes_0.19.0.md)
@@ -30,6 +31,7 @@
3031
hidden:
3132
---
3233
unreleased
34+
changes_1.0.0
3335
changes_0.21.0
3436
changes_0.20.0
3537
changes_0.19.0

doc/changes/changes_1.0.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# 1.0.0 - 2025-04-04
2+
3+
## Summary
4+
5+
In exasol-toolbox version `1.0.0` and higher the default behavior for
6+
`.github/actions/python-environment/action.yml` has changed. In previous versions,
7+
the default value for `poetry-version` was `1.2.2`, and it is now `2.1.2`.
8+
9+
* Depending on its poetry version, a repository relying on the default behavior of said
10+
action may run into breaking changes. This can easily be resolved with explicitly setting the
11+
`poetry-version` when calling the GitHub action. It is, however, recommended whenever
12+
possible to update the poetry version of affected repository to `2.x`.
13+
14+
## ✨ Features
15+
16+
* [#73](https://github.com/exasol/python-toolbox/issues/73): Added nox target for auditing work spaces in regard to known vulnerabilities
17+
* [#65](https://github.com/exasol/python-toolbox/issues/65): Added a Nox task for checking if the changelog got updated.
18+
* [#369](https://github.com/exasol/python-toolbox/issues/369): Removed option `-v` for `isort`
19+
* [#372](https://github.com/exasol/python-toolbox/issues/372): Added conversion from pip-audit JSON to expected GitHub Issue format
20+
21+
## ⚒️ Refactorings
22+
* [#388](https://github.com/exasol/python-toolbox/issues/388): Switched GitHub workflows to use pinned OS version
23+
* [#376](https://github.com/exasol/python-toolbox/issues/376): Updated to poetry `2.1.2`

doc/changes/unreleased.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1 @@
11
# Unreleased
2-
3-
## Summary
4-
5-
In exasol-toolbox version `1.0.0` and higher the default behavior for
6-
`.github/actions/python-environment/action.yml` has changed. In previous versions,
7-
the default value for `poetry-version` was `1.2.2`, and it is now `2.1.2`.
8-
9-
* Depending on its poetry version, a repository relying on the default behavior of said
10-
action may run into breaking changes. This can easily be resolved with explicitly setting the
11-
`poetry-version` when calling the GitHub action. It is, however, recommended whenever
12-
possible to update the poetry version of affected repository to `2.x`.
13-
14-
## ✨ Features
15-
16-
* [#73](https://github.com/exasol/python-toolbox/issues/73): Added nox target for auditing work spaces in regard to known vulnerabilities
17-
* [#65](https://github.com/exasol/python-toolbox/issues/65): Added a Nox task for checking if the changelog got updated.
18-
* [#369](https://github.com/exasol/python-toolbox/issues/369): Removed option `-v` for `isort`
19-
* [#372](https://github.com/exasol/python-toolbox/issues/372): Added conversion from pip-audit JSON to expected GitHub Issue format
20-
21-
## ⚒️ Refactorings
22-
* [#388](https://github.com/exasol/python-toolbox/issues/388): Switched GitHub workflows to use pinned OS version
23-
* [#376](https://github.com/exasol/python-toolbox/issues/376): Updated to poetry `2.1.2`

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.21.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
40+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
4141

4242
- name: Build Documentation
4343
run: |
@@ -76,7 +76,7 @@ jobs:
7676
uses: actions/checkout@v4
7777

7878
- name: Setup Python & Poetry Environment
79-
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
79+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
8080
with:
8181
python-version: ${{ matrix.python-version }}
8282

@@ -105,7 +105,7 @@ jobs:
105105
uses: actions/checkout@v4
106106

107107
- name: Setup Python & Poetry Environment
108-
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
108+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
109109
with:
110110
python-version: ${{ matrix.python-version }}
111111

@@ -125,7 +125,7 @@ jobs:
125125
uses: actions/checkout@v4
126126

127127
- name: Setup Python & Poetry Environment
128-
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
128+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
129129
with:
130130
python-version: ${{ matrix.python-version }}
131131

@@ -148,7 +148,7 @@ jobs:
148148
uses: actions/checkout@v4
149149

150150
- name: Setup Python & Poetry Environment
151-
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
151+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
152152
with:
153153
python-version: "3.9"
154154

@@ -170,7 +170,7 @@ jobs:
170170
uses: actions/checkout@v4
171171

172172
- name: Setup Python & Poetry Environment
173-
uses: exasol/python-toolbox/.github/actions/python-environment@0.21.0
173+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
174174
with:
175175
python-version: ${{ matrix.python-version }}
176176

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.21.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.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.21.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
2121

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

0 commit comments

Comments
 (0)