Skip to content

Commit 464b9f3

Browse files
authored
Prepare release 0.10.0 (#178)
1 parent 31ac6e5 commit 464b9f3

File tree

10 files changed

+32
-29
lines changed

10 files changed

+32
-29
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+
* [0.10.0](changes_0.10.0.md)
45
* [0.9.0](changes_0.9.0.md)
56
* [0.8.0](changes_0.8.0.md)
67
* [0.7.0](changes_0.7.0.md)
@@ -18,6 +19,7 @@
1819
hidden:
1920
---
2021
unreleased
22+
changes_0.10.0
2123
changes_0.9.0
2224
changes_0.8.0
2325
changes_0.7.0

doc/changes/changes_0.10.0.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 0.10.0 - 2024-05-15
2+
3+
🚨 Breaking Changes
4+
Static callbacks/hooks in the Config object have been removed and replaced with Plugin hooks.
5+
6+
For additional information, refer to [customization](../user_guide/customization.rst) in the user guide.
7+
## 🐞 Fixed
8+
* Updated templates for GH workflows to add content of changes file for release letter
9+
10+
## ✨ Added
11+
* Implemented plugin support for `pre-` and `post-` integration-tests hooks.
12+
13+
## 📚 Documentation
14+
* Added documentation on nox task plugins for users and developers.
15+
* Added documentation on python-environment action.
16+
* Updated theme and structure of the documentation.
17+
18+
## 🔩 Internal
19+
* Relocked and updated dependencies

doc/changes/unreleased.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1 @@
11
# Unreleased
2-
3-
🚨 Breaking Changes
4-
Static callbacks/hooks in the Config object have been removed and replaced with Plugin hooks.
5-
6-
For additional information, refer to [customization](../user_guide/customization.rst) in the user guide.
7-
## 🐞 Fixed
8-
* Updated templates for GH workflows to add content of changes file for release letter
9-
10-
## ✨ Added
11-
* Implemented plugin support for `pre-` and `post-` integration-tests hooks.
12-
13-
## 📚 Documentation
14-
* Added documentation on nox task plugins for users and developers.
15-
* Added documentation on python-environment action.
16-
* Updated theme and structure of the documentation.
17-
18-
## 🔩 Internal
19-
* Relocked and updated dependencies

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@v3
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.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@v3
1515

1616
- name: Setup Python & Poetry Environment
17-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

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

2020
- name: Check Version(s)
2121
run: poetry run version-check <<Add path to version.py file>>
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v3
3131

3232
- name: Setup Python & Poetry Environment
33-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
33+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
3434

3535
- name: Build Documentation
3636
run: |
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v3
5151

5252
- name: Setup Python & Poetry Environment
53-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
53+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v3
7272

7373
- name: Setup Python & Poetry Environment
74-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
74+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
7575
with:
7676
python-version: ${{ matrix.python-version }}
7777

@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/checkout@v3
9494

9595
- name: Setup Python & Poetry Environment
96-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
96+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
9797
with:
9898
python-version: ${{ matrix.python-version }}
9999

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v3
1313

1414
- name: Setup Python & Poetry Environment
15-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
15+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
1616

1717
- name: Build Documentation
1818
run: |

exasol/toolbox/templates/github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 0
2222

2323
- name: Setup Python & Poetry Environment
24-
uses: exasol/python-toolbox/.github/actions/python-environment@0.9.0
24+
uses: exasol/python-toolbox/.github/actions/python-environment@0.10.0
2525

2626
- name: Download Artifacts
2727
uses: actions/download-artifact@v3

exasol/toolbox/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 9
8+
MINOR = 10
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "exasol-toolbox"
33
packages = [
44
{ include = "exasol" },
55
]
6-
version = "0.9.0"
6+
version = "0.10.0"
77
description = ""
88
authors = [
99
"Nicola Coretti <nicola.coretti@exasol.com>"

0 commit comments

Comments
 (0)