Skip to content

Commit e05da01

Browse files
authored
Prepare release 1.0.1 (#405)
1 parent 11ced0f commit e05da01

File tree

15 files changed

+31
-28
lines changed

15 files changed

+31
-28
lines changed

.github/actions/security-issues/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
- name: Install Python Toolbox / Security tool
4040
shell: bash
4141
run: |
42-
pip install exasol-toolbox==1.0.0
42+
pip install exasol-toolbox==1.0.1
4343
4444
- name: Create Security Issue Report
4545
shell: bash

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.1](changes_1.0.1.md)
45
* [1.0.0](changes_1.0.0.md)
56
* [0.21.0](changes_0.21.0.md)
67
* [0.20.0](changes_0.20.0.md)
@@ -31,6 +32,7 @@
3132
hidden:
3233
---
3334
unreleased
35+
changes_1.0.1
3436
changes_1.0.0
3537
changes_0.21.0
3638
changes_0.20.0

doc/changes/changes_1.0.1.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# 1.0.1 - 2025-04-11
2+
3+
## Bugfixes
4+
5+
* #397: Fixed handling empty coverage
6+
* #403: Removed unneeded `poetry run` from internal code of nox tasks
7+
8+
## Refactorings
9+
10+
* #399: Modified `release:prepare` to update `.github/actions` with new PTB version

doc/changes/unreleased.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
# Unreleased
2-
3-
## Bugfixes
4-
5-
* #397: Fixed handling empty coverage
6-
* #403: Removed unneeded `poetry run` from internal code of nox tasks
7-
8-
## Refactorings
9-
10-
* #399: Modified `release:prepare` to update `.github/actions` with new PTB version

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

4242
- name: Build Documentation
4343
run: |
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/checkout@v4
5858

5959
- name: Setup Python & Poetry Environment
60-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
60+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
6161

6262
- name: Run changelog update check
6363
run: poetry run -- nox -s changelog:updated
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions/checkout@v4
7676

7777
- name: Setup Python & Poetry Environment
78-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
78+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
7979
with:
8080
python-version: ${{ matrix.python-version }}
8181

@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/checkout@v4
105105

106106
- name: Setup Python & Poetry Environment
107-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
107+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
108108
with:
109109
python-version: ${{ matrix.python-version }}
110110

@@ -124,7 +124,7 @@ jobs:
124124
uses: actions/checkout@v4
125125

126126
- name: Setup Python & Poetry Environment
127-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
127+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
128128
with:
129129
python-version: ${{ matrix.python-version }}
130130

@@ -147,7 +147,7 @@ jobs:
147147
uses: actions/checkout@v4
148148

149149
- name: Setup Python & Poetry Environment
150-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
150+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
151151

152152
- name: Run format check
153153
run: poetry run -- nox -s project:format
@@ -167,7 +167,7 @@ jobs:
167167
uses: actions/checkout@v4
168168

169169
- name: Setup Python & Poetry Environment
170-
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.0
170+
uses: exasol/python-toolbox/.github/actions/python-environment@1.0.1
171171
with:
172172
python-version: ${{ matrix.python-version }}
173173

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

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

0 commit comments

Comments
 (0)