-
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
69 additions
and
66 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,56 @@ | ||
# 0.9.0 - 2024-05-08 | ||
|
||
## 🚨 Breaking Changes | ||
* **CI-CD Workflow (Breaking Change)** | ||
|
||
**Overview:** | ||
|
||
The CI-CD workflow now assumes the changelog to be in markdown and the location `/doc/changes/change_x.y.z.md` | ||
|
||
## 🐞 Fixed | ||
* Fixed `_deny_filter` function in `exasol.toolbox._shared` module | ||
* Fixed GitHub workflow references in `ci.yml`, ci-cd.yml` and `pr-merge.yml` workflows | ||
* Fixed indent error/issue in `checks.yml` workflow | ||
|
||
## ✨ Added | ||
* **Added Nox Task `prepare-release`** | ||
|
||
**Overview:** | ||
|
||
A new Nox task, `prepare-release`, has been introduced to streamline the release preparation process. This task automates several crucial steps: | ||
|
||
- Create a dedicated branch for the release changes. | ||
- Transfer changes from the "Unreleased" section to the appropriate versioned changelog section. | ||
- Update the version number to the next release. | ||
- Initiate a Pull Request (PR) for review and integration into the main branch. | ||
|
||
**Usage:** | ||
|
||
To prepare a release, simply execute a command in your terminal like in the example below: | ||
|
||
```shell | ||
nox -s prepare-release -- 1.10.1 | ||
``` | ||
|
||
Add the changes for releasing on top of the current branch: | ||
|
||
```shell | ||
nox -s prepare-release -- 1.10.1 --no-pr --no-branch | ||
``` | ||
|
||
For additional options and help regarding the task `prepare-release`, execute: | ||
|
||
```shell | ||
nox -s prepare-release -- -h | ||
``` | ||
|
||
* **Added Plugin Support for Nox Task `prepare-release`** | ||
|
||
- For further details on the plugin specification, refer to `exasol.toolbox.nox.plugin`. | ||
- For an example of usage, refer to the `noxconfig` of the Python toolbox. | ||
|
||
## 📚 Documentation | ||
* Fixed typos and updated documentation | ||
|
||
## 🔩 Internal | ||
* Restructured `exasol.toolbox.nox` module |
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,56 +1 @@ | ||
# Unreleased | ||
|
||
## 🚨 Breaking Changes | ||
* **CI-CD Workflow (Breaking Change)** | ||
|
||
**Overview:** | ||
|
||
The CI-CD workflow now assumes the changelog to be in markdown and the location `/doc/changes/change_x.y.z.md` | ||
|
||
## 🐞 Fixed | ||
* Fixed `_deny_filter` function in `exasol.toolbox._shared` module | ||
* Fixed GitHub workflow references in `ci.yml`, ci-cd.yml` and `pr-merge.yml` workflows | ||
* Fixed indent error/issue in `checks.yml` workflow | ||
|
||
## ✨ Added | ||
* **Added Nox Task `prepare-release`** | ||
|
||
**Overview:** | ||
|
||
A new Nox task, `prepare-release`, has been introduced to streamline the release preparation process. This task automates several crucial steps: | ||
|
||
- Create a dedicated branch for the release changes. | ||
- Transfer changes from the "Unreleased" section to the appropriate versioned changelog section. | ||
- Update the version number to the next release. | ||
- Initiate a Pull Request (PR) for review and integration into the main branch. | ||
|
||
**Usage:** | ||
|
||
To prepare a release, simply execute a command in your terminal like in the example below: | ||
|
||
```shell | ||
nox -s prepare-release -- 1.10.1 | ||
``` | ||
|
||
Add the changes for releasing on top of the current branch: | ||
|
||
```shell | ||
nox -s prepare-release -- 1.10.1 --no-pr --no-branch | ||
``` | ||
|
||
For additional options and help regarding the task `prepare-release`, execute: | ||
|
||
```shell | ||
nox -s prepare-release -- -h | ||
``` | ||
|
||
* **Added Plugin Support for Nox Task `prepare-release`** | ||
|
||
- For further details on the plugin specification, refer to `exasol.toolbox.nox.plugin`. | ||
- For an example of usage, refer to the `noxconfig` of the Python toolbox. | ||
|
||
## 📚 Documentation | ||
* Fixed typos and updated documentation | ||
|
||
## 🔩 Internal | ||
* Restructured `exasol.toolbox.nox` module |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "exasol-toolbox" | |
packages = [ | ||
{ include = "exasol" }, | ||
] | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "" | ||
authors = [ | ||
"Nicola Coretti <[email protected]>" | ||
|