Skip to content

Commit 373669e

Browse files
authored
Prepare release 1.1.0 (#419)
* Prepare release 1.1.0 * Fix requires-python to be compatible for build and publish action
1 parent 6c3e2aa commit 373669e

File tree

16 files changed

+36
-33
lines changed

16 files changed

+36
-33
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.1
42+
pip install exasol-toolbox==1.1.0
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.1.0](changes_1.1.0.md)
45
* [1.0.1](changes_1.0.1.md)
56
* [1.0.0](changes_1.0.0.md)
67
* [0.21.0](changes_0.21.0.md)
@@ -32,6 +33,7 @@
3233
hidden:
3334
---
3435
unreleased
36+
changes_1.1.0
3537
changes_1.0.1
3638
changes_1.0.0
3739
changes_0.21.0

doc/changes/changes_1.1.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 1.1.0 - 2025-05-07
2+
3+
## ✨ Features
4+
5+
* [#362](https://github.com/exasol/python-toolbox/issues/362): Added Nox task to trigger a release
6+
* [#406](https://github.com/exasol/python-toolbox/issues/406): Added `.poetry` to ignore list for formatting
7+
* [#417](https://github.com/exasol/python-toolbox/issues/417): Added `working-directory` to `python-environment` action for a different `pyproject.toml` location
8+
9+
## Bugfixes
10+
11+
* [#401](https://github.com/exasol/python-toolbox/issues/401): Modified nox `docs:multiversion` to add `.nojekyll` file

doc/changes/unreleased.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
11
# Unreleased
2-
3-
## ✨ Features
4-
5-
* [#362](https://github.com/exasol/python-toolbox/issues/362): Added Nox task to trigger a release
6-
* [#406](https://github.com/exasol/python-toolbox/issues/406): Added `.poetry` to ignore list for formatting
7-
* [#417](https://github.com/exasol/python-toolbox/issues/417): Added `working-directory` to `python-environment` action for a different `pyproject.toml` location
8-
9-
## Bugfixes
10-
11-
* [#401](https://github.com/exasol/python-toolbox/issues/401): Modified nox `docs:multiversion` to add `.nojekyll` file

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.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.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@1.0.1
17+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.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: 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.1
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.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@1.0.1
40+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
60+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
78+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
107+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
127+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
150+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
170+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
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.1
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.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@1.0.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.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@1.0.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121

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

0 commit comments

Comments
 (0)