Skip to content

Commit e92f10d

Browse files
authored
Prepare release 0.13.0 (#201)
1 parent 427b0ec commit e92f10d

File tree

10 files changed

+29
-26
lines changed

10 files changed

+29
-26
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.13.0](changes_0.13.0.md)
45
* [0.12.0](changes_0.12.0.md)
56
* [0.11.0](changes_0.11.0.md)
67
* [0.10.0](changes_0.10.0.md)
@@ -21,6 +22,7 @@
2122
hidden:
2223
---
2324
unreleased
25+
changes_0.13.0
2426
changes_0.12.0
2527
changes_0.11.0
2628
changes_0.10.0

doc/changes/changes_0.13.0.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# 0.13.0 - 2024-06-06
2+
3+
## 🐞 Fixed
4+
5+
* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required.
6+
7+
## ✨ Feature
8+
9+
* #162: Updated templates for GitHub workflows to inherit secrets by default
10+
* #52: Add support for caching python dependencies in GitHub workflows
11+
12+
## 📚 Documentation
13+
* Updated information about nox tasks and `PYTHONPATH` setup
14+
15+
## 🔩 Internal
16+
* Relocked and updated dependencies

doc/changes/unreleased.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
11
# Unreleased
2-
3-
## 🐞 Fixed
4-
5-
* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required.
6-
7-
## ✨ Feature
8-
9-
* #162: Updated templates for GitHub workflows to inherit secrets by default
10-
* #52: Add support for caching python dependencies in GitHub workflows
11-
12-
## 📚 Documentation
13-
* Updated information about nox tasks and `PYTHONPATH` setup
14-
15-
## 🔩 Internal
16-
* 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.12.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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.12.0
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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.12.0
18+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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.12.0
33+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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.12.0
53+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

@@ -77,7 +77,7 @@ jobs:
7777
uses: actions/checkout@v3
7878

7979
- name: Setup Python & Poetry Environment
80-
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
80+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0
8181
with:
8282
python-version: ${{ matrix.python-version }}
8383

@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v3
100100

101101
- name: Setup Python & Poetry Environment
102-
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0
102+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0
103103
with:
104104
python-version: ${{ matrix.python-version }}
105105

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.12.0
15+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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.12.0
24+
uses: exasol/python-toolbox/.github/actions/python-environment@0.13.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 = 12
8+
MINOR = 13
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.12.0"
6+
version = "0.13.0"
77
description = ""
88
authors = [
99
"Nicola Coretti <[email protected]>"

0 commit comments

Comments
 (0)