Skip to content

Commit 3c5ab7c

Browse files
authored
Prepare release 5.1.1 (#694)
* Prepare release 5.1.1
1 parent c259f41 commit 3c5ab7c

File tree

7 files changed

+33
-17
lines changed

7 files changed

+33
-17
lines changed

.github/actions/security-issues/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
- name: Install Python Toolbox / Security tool
4040
shell: bash
4141
run: |
42-
pip install exasol-toolbox==5.1.0
42+
pip install exasol-toolbox==5.1.1
4343
4444
- name: Create Security Issue Report
4545
shell: bash

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_5.1.1.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 5.1.1 - 2026-02-06
2+
3+
## Summary
4+
5+
In this patch release, we:
6+
7+
* Fixed a bug which was affecting new GitHub projects from using the nox session `release:prepare`.
8+
* Switched from using a string verified by PyYaml to directly using ruamel-yaml for rendering the GitHub workflows.
9+
10+
## Bug
11+
12+
* #692: Fixed bug where creating first release failed due to no previous tags
13+
14+
## Documentation
15+
16+
* #585: Added instructions how to ignore sonar issues to the User Guide
17+
* #630: Updated cookiecutter command to reduce errors experienced by users
18+
19+
## Refactoring
20+
21+
* #686: Switched GitHub templates to be fully parsed by ruamel-yaml
22+
23+
## Dependency Updates
24+
25+
### `main`
26+
* Removed dependency `pyyaml:6.0.3`
27+
* Added dependency `ruamel-yaml:0.18.16`

doc/changes/unreleased.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
11
# Unreleased
22

33
## Summary
4-
5-
## Bug
6-
7-
* #692: Fixed bug where creating first release failed due to no previous tags
8-
9-
## Documentation
10-
11-
* #585: Added instructions how to ignore sonar issues to the User Guide
12-
* #630: Updated cookiecutter command to reduce errors experienced by users
13-
14-
## Refactoring
15-
16-
* #686: Switched GitHub templates to be fully parsed by ruamel-yaml

exasol/toolbox/version.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

project-template/cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author_email": "[email protected]",
1010
"project_short_tag": "",
1111
"python_version_min": "3.10",
12-
"exasol_toolbox_version_range": ">=5.1.0,<6",
12+
"exasol_toolbox_version_range": ">=5.1.1,<6",
1313
"license_year": "{% now 'utc', '%Y' %}",
1414
"__repo_name_slug": "{{cookiecutter.package_name}}",
1515
"__package_name_slug": "{{cookiecutter.package_name}}",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "exasol-toolbox"
3-
version = "5.1.0"
3+
version = "5.1.1"
44
description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project."
55
authors = [
66
{ name = "Nicola Coretti", email = "[email protected]" },

0 commit comments

Comments
 (0)