-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into nox-task-to-check-linting-files
- Loading branch information
Showing
17 changed files
with
57 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 0.19.0 - 2024-12-05 | ||
|
||
## 🔧 Changed | ||
|
||
* Add `__version__` member to generated `version.py` for compatibility with other versions schemes | ||
* Excluded pyupgrade from project check due to its destructive nature | ||
* Updated cookiecutter template | ||
- removed obsolete template file `version.html` | ||
* Added nox task for format checking | ||
* Updated GitHub workflow and workflow template of `checks.yml` to include format check | ||
|
||
## 🐞 Fixed | ||
|
||
* Fixed whitespace and final newline behavior in `release:prepare` to work well with `trailing whitespace` commit hook | ||
* Fixed syntax error in the `check.yml` template which resulted in an invalid workflow file | ||
* Fixed context forwarding to plugins hooking into `pre` and `post` integration test hooks | ||
- `pre_integration_tests_hook(self, session, config, context)` | ||
- `post_integration_tests_hook(self, session, config, context)` | ||
|
||
## 📚 Documentation | ||
|
||
* Fixed various documentation typos | ||
* Added a toolbox migration guide | ||
* Fixed version information in GitHub Actions reference | ||
* Updated the `pre-commit` related documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,5 @@ | ||
# Unreleased | ||
|
||
## 🔧 Changed | ||
|
||
* Excluded pyupgrade from project check due to its destructive nature | ||
* Updated cookiecutter template | ||
- removed obsolete template file `version.html` | ||
* Added nox task for format checking | ||
* Updated GitHub workflow and workflow template of `checks.yml` to include format check | ||
|
||
## 🐞 Fixed | ||
|
||
* Fixed syntax error in the `check.yml` template which resulted in an invalid workflow file | ||
|
||
## 📚 Documentation | ||
|
||
* Fixed various documentation typos | ||
* Added a toolbox migration guide | ||
* Fixed version information in GitHub Actions reference | ||
* Updated the `pre-commit` related documentation | ||
* Added multi-version extension to Sphinx configuration of the project template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0 | ||
uses: exasol/python-toolbox/.github/actions/python-environment@0.19.0 | ||
|
||
- name: Download Artifacts | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
MINOR = 1 | ||
PATCH = 0 | ||
VERSION = f"{MAJOR}.{MINOR}.{PATCH}" | ||
__version__ = VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "exasol-toolbox" | |
packages = [ | ||
{ include = "exasol" }, | ||
] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." | ||
authors = [ | ||
"Nicola Coretti <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters