Skip to content

Commit dd481dc

Browse files
authored
Prepare release 1.4.0 (#466)
1 parent 58b3c5f commit dd481dc

File tree

15 files changed

+32
-29
lines changed

15 files changed

+32
-29
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.3.0
42+
pip install exasol-toolbox==1.4.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.4.0](changes_1.4.0.md)
45
* [1.3.0](changes_1.3.0.md)
56
* [1.2.0](changes_1.2.0.md)
67
* [1.1.0](changes_1.1.0.md)
@@ -35,6 +36,7 @@
3536
hidden:
3637
---
3738
unreleased
39+
changes_1.4.0
3840
changes_1.3.0
3941
changes_1.2.0
4042
changes_1.1.0

doc/changes/changes_1.4.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 1.4.0 - 2025-06-06
2+
3+
## Summary
4+
5+
## ✨ Features
6+
7+
* #426: Allowed configuring the python version used for coverage
8+
9+
## Bugfixes
10+
11+
* #463: Fixed dependency:licenses to correctly parse exceptional names

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-
## Summary
4-
5-
## ✨ Features
6-
7-
* #426: Allowed configuring the python version used for coverage
8-
9-
## Bugfixes
10-
11-
* #463: Fixed dependency:licenses to correctly parse exceptional names

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Setup Python & Poetry Environment
21-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
21+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
2222

2323
- name: Build Artifacts
2424
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
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
18+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
1919

2020
- name: Check Tag Version
2121
# 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.3.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
2020

2121
- name: Check Version(s)
2222
run: poetry run -- nox -s version:check
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v4
3333

3434
- name: Setup Python & Poetry Environment
35-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
35+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
3636

3737
- name: Build Documentation
3838
run: |
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v4
5656

5757
- name: Setup Python & Poetry Environment
58-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
58+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
5959

6060
- name: Run changelog update check
6161
run: poetry run -- nox -s changelog:updated
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions/checkout@v4
7575

7676
- name: Setup Python & Poetry Environment
77-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
77+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080

@@ -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@1.3.0
108+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
109109
with:
110110
python-version: ${{ matrix.python-version }}
111111

@@ -127,7 +127,7 @@ jobs:
127127
uses: actions/checkout@v4
128128

129129
- name: Setup Python & Poetry Environment
130-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
130+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
131131
with:
132132
python-version: ${{ matrix.python-version }}
133133

@@ -151,7 +151,7 @@ jobs:
151151
uses: actions/checkout@v4
152152

153153
- name: Setup Python & Poetry Environment
154-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
154+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
155155

156156
- name: Run format check
157157
run: poetry run -- nox -s project:format
@@ -173,7 +173,7 @@ jobs:
173173
uses: actions/checkout@v4
174174

175175
- name: Setup Python & Poetry Environment
176-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
176+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
177177
with:
178178
python-version: ${{ matrix.python-version }}
179179

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

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

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.3.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
2121

2222
- name: Build Documentation
2323
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.3.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.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.3.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0
2121

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

0 commit comments

Comments
 (0)