Skip to content

Commit c7b409e

Browse files
committed
Prepare release 1.7.0
1 parent 33bfb55 commit c7b409e

File tree

15 files changed

+41
-32
lines changed

15 files changed

+41
-32
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.6.1
42+
pip install exasol-toolbox==1.7.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.7.0](changes_1.7.0.md)
45
* [1.6.1](changes_1.6.1.md)
56
* [1.6.0](changes_1.6.0.md)
67
* [1.5.0](changes_1.5.0.md)
@@ -39,6 +40,7 @@
3940
hidden:
4041
---
4142
unreleased
43+
changes_1.7.0
4244
changes_1.6.1
4345
changes_1.6.0
4446
changes_1.5.0

doc/changes/changes_1.7.0.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 1.7.0 - 2025-07-28
2+
## Documentation
3+
4+
* #504: Removed Issue Tracking & Style Guides, moved & updated "Create a release", moved & updated "Collecting metrics"
5+
6+
## Feature
7+
8+
* #382: Added onto nox session `release:prepare` to append dependency changes between current and latest tag
9+
10+
## Refactoring
11+
12+
* #498: Centralized changelog code relevant for `release:trigger` & robustly tested
13+
14+
## Dependency Updates
15+
16+
### `main`
17+
* Updated dependency `furo:2024.8.6` to `2025.7.19`
18+
* Updated dependency `mypy:1.16.1` to `1.17.0`
19+
* Updated dependency `shibuya:2025.5.30` to `2025.7.14`

doc/changes/unreleased.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
11
# Unreleased
2-
3-
## Documentation
4-
5-
* #504: Removed Issue Tracking & Style Guides, moved & updated "Create a release", moved & updated "Collecting metrics"
6-
7-
## Feature
8-
9-
* #382: Added onto nox session `release:prepare` to append dependency changes between current and latest tag
10-
11-
## Refactoring
12-
13-
* #498: Centralized changelog code relevant for `release:trigger` & robustly tested

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.6.1
21+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.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.6.1
18+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.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.6.1
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.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.6.1
35+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
3636

3737
- name: Build Documentation
3838
run: |
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v4
6060

6161
- name: Setup Python & Poetry Environment
62-
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.1
62+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
6363

6464
- name: Run changelog update check
6565
run: poetry run -- nox -s changelog:updated
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/checkout@v4
7979

8080
- name: Setup Python & Poetry Environment
81-
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.1
81+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

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

@@ -131,7 +131,7 @@ jobs:
131131
uses: actions/checkout@v4
132132

133133
- name: Setup Python & Poetry Environment
134-
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.1
134+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
135135
with:
136136
python-version: ${{ matrix.python-version }}
137137

@@ -155,7 +155,7 @@ jobs:
155155
uses: actions/checkout@v4
156156

157157
- name: Setup Python & Poetry Environment
158-
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.1
158+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
159159

160160
- name: Run format check
161161
run: poetry run -- nox -s project:format
@@ -175,7 +175,7 @@ jobs:
175175
uses: actions/checkout@v4
176176

177177
- name: Setup Python & Poetry Environment
178-
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.1
178+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
179179
with:
180180
python-version: ${{ matrix.python-version }}
181181

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.6.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.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.6.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.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.6.1
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
2121

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

0 commit comments

Comments
 (0)