From 14dd9719744d209da99e90d2795a5b8a6e7364d8 Mon Sep 17 00:00:00 2001 From: Ariel Schulz Date: Tue, 30 Jun 2026 11:34:22 +0200 Subject: [PATCH] Prepare release 10.1.0 --- .github/actions/security-issues/action.yml | 2 +- doc/changes/changelog.md | 2 ++ doc/changes/changes_10.1.0.md | 12 ++++++++++++ doc/changes/unreleased.md | 9 --------- project-template/cookiecutter.json | 2 +- pyproject.toml | 2 +- 6 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 doc/changes/changes_10.1.0.md diff --git a/.github/actions/security-issues/action.yml b/.github/actions/security-issues/action.yml index 47028e3f0..979ce4ed2 100644 --- a/.github/actions/security-issues/action.yml +++ b/.github/actions/security-issues/action.yml @@ -39,7 +39,7 @@ runs: - name: Install Python Toolbox / Security tool shell: bash run: | - pip install exasol-toolbox==10.0.0 + pip install exasol-toolbox==10.1.0 - name: Create Security Issue Report shell: bash diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index eef28ade1..f68a6909b 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changelog * [unreleased](unreleased.md) +* [10.1.0](changes_10.1.0.md) * [10.0.0](changes_10.0.0.md) * [9.0.0](changes_9.0.0.md) * [8.2.0](changes_8.2.0.md) @@ -70,6 +71,7 @@ hidden: --- unreleased +changes_10.1.0 changes_10.0.0 changes_9.0.0 changes_8.2.0 diff --git a/doc/changes/changes_10.1.0.md b/doc/changes/changes_10.1.0.md new file mode 100644 index 000000000..7a31b63b0 --- /dev/null +++ b/doc/changes/changes_10.1.0.md @@ -0,0 +1,12 @@ +# 10.1.0 - 2026-06-30 + +## Summary + +This minor release adds an opt-out for documentation-enabled workflows and jobs. Projects can +now declare that they do not serve documentation with the `has_documentation` switch in +`BaseConfig`, and the workflow generator/checker will stop documentation relevant jobs +and workflows for those projects. This should only be set to `False` for exceptional cases. + +## Feature + +* #901: Provided switch `has_documentation` in `BaseConfig` for projects without documentation \ No newline at end of file diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 163bd2a0c..fb4737052 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,12 +1,3 @@ # Unreleased ## Summary - -This minor release adds an opt-out for documentation-enabled workflows and jobs. Projects can -now declare that they do not serve documentation with the `has_documentation` switch in -`BaseConfig`, and the workflow generator/checker will stop documentation relevant jobs -and workflows for those projects. This should only be set to `False` for exceptional cases. - -## Feature - -* #901: Provided switch `has_documentation` in `BaseConfig` for projects without documentation diff --git a/project-template/cookiecutter.json b/project-template/cookiecutter.json index eaa1ec7a3..3983a7e61 100644 --- a/project-template/cookiecutter.json +++ b/project-template/cookiecutter.json @@ -9,7 +9,7 @@ "author_email": "opensource@exasol.com", "project_short_tag": "", "python_version_min": "3.10", - "exasol_toolbox_version_range": ">=10.0.0,<11", + "exasol_toolbox_version_range": ">=10.1.0,<11", "license_year": "{% now 'utc', '%Y' %}", "__repo_name_slug": "{{cookiecutter.package_name}}", "__package_name_slug": "{{cookiecutter.package_name}}", diff --git a/pyproject.toml b/pyproject.toml index 1bfec8e31..88f120e1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "exasol-toolbox" -version = "10.0.0" +version = "10.1.0" description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." authors = [ { name = "Nicola Coretti", email = "nicola.coretti@exasol.com" },