|
| 1 | +# 0.9.0 - 2024-05-08 |
| 2 | + |
| 3 | +## 🚨 Breaking Changes |
| 4 | +* **CI-CD Workflow (Breaking Change)** |
| 5 | + |
| 6 | + **Overview:** |
| 7 | + |
| 8 | + The CI-CD workflow now assumes the changelog to be in markdown and the location `/doc/changes/change_x.y.z.md` |
| 9 | + |
| 10 | +## 🐞 Fixed |
| 11 | +* Fixed `_deny_filter` function in `exasol.toolbox._shared` module |
| 12 | +* Fixed GitHub workflow references in `ci.yml`, ci-cd.yml` and `pr-merge.yml` workflows |
| 13 | +* Fixed indent error/issue in `checks.yml` workflow |
| 14 | + |
| 15 | +## ✨ Added |
| 16 | +* **Added Nox Task `prepare-release`** |
| 17 | + |
| 18 | + **Overview:** |
| 19 | + |
| 20 | + A new Nox task, `prepare-release`, has been introduced to streamline the release preparation process. This task automates several crucial steps: |
| 21 | + |
| 22 | + - Create a dedicated branch for the release changes. |
| 23 | + - Transfer changes from the "Unreleased" section to the appropriate versioned changelog section. |
| 24 | + - Update the version number to the next release. |
| 25 | + - Initiate a Pull Request (PR) for review and integration into the main branch. |
| 26 | + |
| 27 | + **Usage:** |
| 28 | + |
| 29 | + To prepare a release, simply execute a command in your terminal like in the example below: |
| 30 | + |
| 31 | + ```shell |
| 32 | + nox -s prepare-release -- 1.10.1 |
| 33 | + ``` |
| 34 | + |
| 35 | + Add the changes for releasing on top of the current branch: |
| 36 | + |
| 37 | + ```shell |
| 38 | + nox -s prepare-release -- 1.10.1 --no-pr --no-branch |
| 39 | + ``` |
| 40 | + |
| 41 | + For additional options and help regarding the task `prepare-release`, execute: |
| 42 | + |
| 43 | + ```shell |
| 44 | + nox -s prepare-release -- -h |
| 45 | + ``` |
| 46 | + |
| 47 | +* **Added Plugin Support for Nox Task `prepare-release`** |
| 48 | + |
| 49 | + - For further details on the plugin specification, refer to `exasol.toolbox.nox.plugin`. |
| 50 | + - For an example of usage, refer to the `noxconfig` of the Python toolbox. |
| 51 | + |
| 52 | +## 📚 Documentation |
| 53 | +* Fixed typos and updated documentation |
| 54 | + |
| 55 | +## 🔩 Internal |
| 56 | +* Restructured `exasol.toolbox.nox` module |
0 commit comments