Skip to content

Commit 75c8458

Browse files
authored
Prepare release 0.15.0 (#251)
1 parent 06f5045 commit 75c8458

File tree

10 files changed

+41
-39
lines changed

10 files changed

+41
-39
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.15.0](changes_0.15.0.md)
45
* [0.14.0](changes_0.14.0.md)
56
* [0.13.0](changes_0.13.0.md)
67
* [0.12.0](changes_0.12.0.md)
@@ -23,6 +24,7 @@
2324
hidden:
2425
---
2526
unreleased
27+
changes_0.15.0
2628
changes_0.14.0
2729
changes_0.13.0
2830
changes_0.12.0

doc/changes/changes_0.15.0.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 0.15.0 - 2024-09-27
2+
3+
## ✨ Added
4+
5+
* Added cookiecutter-template for creating new project
6+
* [#246](https://github.com/exasol/python-toolbox/issues/246): Added standard branch protection workflow
7+
8+
## 🐞 Bug Fixes
9+
10+
* [#181](https://github.com/exasol/python-toolbox/issues/181): Updated metrics related workflows
11+
* [#225](https://github.com/exasol/python-toolbox/issues/225): Fixed broken reference to version file in workflow
12+
* Fixed coverage for empty project
13+
14+
## ⚒️ Refactorings
15+
16+
* [#219](https://github.com/exasol/python-toolbox/issues/219): Updated project template configuration
17+
* Updated actions/checkout to v4
18+
19+
## 📚 Documentation
20+
* Add Python Styleguide
21+
* Add Issue Guide
22+
* Updated User Documentation
23+
24+
## 🔩 Internal
25+
26+
* Update depdency constraints
27+
* Relock dependencies

doc/changes/unreleased.md

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1 @@
11
# Unreleased
2-
3-
## ✨ Added
4-
5-
* Added cookiecutter-template for creating new project
6-
* [#246](https://github.com/exasol/python-toolbox/issues/246): Added standard branch protection workflow
7-
8-
## 🐞 Bug Fixes
9-
10-
* [#181](https://github.com/exasol/python-toolbox/issues/181): Updated metrics related workflows
11-
* [#225](https://github.com/exasol/python-toolbox/issues/225): Fixed broken reference to version file in workflow
12-
* Fixed coverage for empty project
13-
14-
## ⚒️ Refactorings
15-
16-
* [#219](https://github.com/exasol/python-toolbox/issues/219): Updated project template configuration
17-
* Updated actions/checkout to v4
18-
19-
## 📚 Documentation
20-
* Add Python Styleguide
21-
* Add Issue Guide
22-
* Updated User Documentation
23-
24-
## 🔩 Internal
25-
26-
* Update depdency constraints
27-
* Relock dependencies
28-

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@0.14.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.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@0.14.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Setup Python & Poetry Environment
22-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
22+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
2323

2424
- name: Check Version(s)
2525
run: poetry run version-check `poetry run python -c "from noxconfig import PROJECT_CONFIG; print(PROJECT_CONFIG.version_file)"`
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/checkout@v4
4141

4242
- name: Setup Python & Poetry Environment
43-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
43+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
4444

4545
- name: Build Documentation
4646
run: |
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/checkout@v4
6161

6262
- name: Setup Python & Poetry Environment
63-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
63+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666

@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/checkout@v4
8989

9090
- name: Setup Python & Poetry Environment
91-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
91+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494

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

@@ -140,7 +140,7 @@ jobs:
140140
uses: actions/checkout@v4
141141

142142
- name: Setup Python & Poetry Environment
143-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
143+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
144144
with:
145145
python-version: ${{ matrix.python-version }}
146146

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@v4
1313

1414
- name: Setup Python & Poetry Environment
15-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
15+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.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
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Setup Python & Poetry Environment
23-
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
23+
uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0
2424

2525
- name: Download Artifacts
2626
uses: actions/download-artifact@v4.1.8

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 = 14
8+
MINOR = 15
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.14.0"
6+
version = "0.15.0"
77
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project."
88
authors = [
99
"Nicola Coretti <nicola.coretti@exasol.com>"

0 commit comments

Comments
 (0)