-
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.
- Loading branch information
Showing
10 changed files
with
56 additions
and
54 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,42 @@ | ||
# 0.16.0 - 2024-11-15 | ||
|
||
## 🚨 Breaking Changes | ||
|
||
* Dropped python 3.8 support | ||
* Changed names of all nox tasks | ||
|
||
| Old Name | New Name | Description | | ||
|--------------------|------------------------|----------------------------------------------------------------| | ||
| fix | project:fix | Runs all automated fixes on the code base | | ||
| check | project:check | Runs all available checks on the project | | ||
| report | project:report | Collects and generates metrics summary for the workspace | | ||
| unit-tests | test:unit | Runs all unit tests | | ||
| integration-tests | test:integration | Runs all the integration tests | | ||
| coverage | test:coverage | Runs all tests (unit + integration) and reports the code coverage | | ||
| lint | lint:code | Runs the static code analyzer on the project | | ||
| type-check | lint:typing | Runs the type checker on the project | | ||
| security | lint:security | Runs the security linter on the project | | ||
| build-build | docs:build | Builds the project documentation | | ||
| open-open | docs:open | Opens the built project documentation | | ||
| clean-docs | docs:clean | Removes the documentations build folder | | ||
| prepare-release | release:prepare | Prepares the project for a new release | | ||
|
||
## ✨ Added | ||
|
||
* Added support for multi version Documentation | ||
* Added nox tasks for building multi-version documentation | ||
|
||
## 🐞 Fixed | ||
|
||
* Fixed CD workflow template | ||
* Fixed the selection of the latest version in Multi-Version Documentation | ||
|
||
## 📚 Documentation | ||
|
||
* Added Documentation on Metrics | ||
* Added additional details regarding adjusted sphinx-multiversion | ||
* Restructured documentation | ||
|
||
## 🔩 Internal | ||
|
||
* Relocked dependencies |
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,43 +1 @@ | ||
# Unreleased | ||
|
||
## 🚨 Breaking Changes | ||
|
||
* Dropped python 3.8 support | ||
* Changed names of all nox tasks | ||
|
||
| Old Name | New Name | Description | | ||
|--------------------|------------------------|----------------------------------------------------------------| | ||
| fix | project:fix | Runs all automated fixes on the code base | | ||
| check | project:check | Runs all available checks on the project | | ||
| report | project:report | Collects and generates metrics summary for the workspace | | ||
| unit-tests | test:unit | Runs all unit tests | | ||
| integration-tests | test:integration | Runs all the integration tests | | ||
| coverage | test:coverage | Runs all tests (unit + integration) and reports the code coverage | | ||
| lint | lint:code | Runs the static code analyzer on the project | | ||
| type-check | lint:typing | Runs the type checker on the project | | ||
| security | lint:security | Runs the security linter on the project | | ||
| build-build | docs:build | Builds the project documentation | | ||
| open-open | docs:open | Opens the built project documentation | | ||
| clean-docs | docs:clean | Removes the documentations build folder | | ||
| prepare-release | release:prepare | Prepares the project for a new release | | ||
|
||
## ✨ Added | ||
|
||
* Added support for multi version Documentation | ||
* Added nox tasks for building multi-version documentation | ||
|
||
## 🐞 Fixed | ||
|
||
* Fixed CD workflow template | ||
* Fixed the selection of the latest version in Multi-Version Documentation | ||
|
||
## 📚 Documentation | ||
|
||
* Added Documentation on Metrics | ||
* Added additional details regarding adjusted sphinx-multiversion | ||
* Restructured documentation | ||
|
||
## 🔩 Internal | ||
|
||
* Relocked dependencies | ||
|
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.15.0 | ||
uses: exasol/python-toolbox/.github/actions/python-environment@0.16.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "exasol-toolbox" | |
packages = [ | ||
{ include = "exasol" }, | ||
] | ||
version = "0.15.0" | ||
version = "0.16.0" | ||
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." | ||
authors = [ | ||
"Nicola Coretti <[email protected]>" | ||
|