Skip to content

Commit f1d5746

Browse files
authored
Bugfix/514 fix version for autosummary (#516)
* Fix typos * Alter docstring in version.py to pass autosummary * Prepare release 1.7.1 * Add changelog.md to .gitattributes
1 parent a2d1ea8 commit f1d5746

File tree

20 files changed

+44
-34
lines changed

20 files changed

+44
-34
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
poetry.lock linguist-generated=true
22
exasol/toolbox/version.py linguist-generated=true
3+
doc/changes/changelog.md linguist-generated=true

.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==1.7.0
42+
pip install exasol-toolbox==1.7.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_1.7.1.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 1.7.1 - 2025-07-30
2+
## Documentation
3+
4+
* #512: Consolidated and added to deploying documentation pages
5+
* #510: Consolidated information of metrics & updated to include more about Sonar
6+
7+
# Bugfix
8+
9+
* #514: Altered docstring in version.py to pass autosummary

doc/changes/unreleased.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
# Unreleased
2-
3-
## Documentation
4-
5-
* #512: Consolidated and added to deploying documentation pages
6-
* #510: Consolidated information of metrics & updated to include more about Sonar

doc/user_guide/features/documentation/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ of your project's documentation. PTB expects the project's documentation in dire
1414
primarily as ``rst`` files. The ``doc/conf.py`` acts as the configuration file for building the
1515
documentation.
1616

17-
GitHub workflow ``checks.yml`` also runs the checks for the documention.
17+
GitHub workflow ``checks.yml`` also runs the checks for the documentation.
1818
This enables updating and fixing the documentation together with other changes in the same pull request.
1919
The final building & serving of the documentation happens in GitHub workflow ``gh-pages.yml``.
2020

doc/user_guide/features/metrics/project_report.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ of the Exasol Product Integration Team:
2727
* `Metrics Schema Project`_
2828

2929
The Integration team runs regular aggregation of the metrics from all projects into a centralized data sink
30-
as decribed in the company Wiki.
30+
as described in the company Wiki.
3131

3232
Development
3333
-----------

exasol/toolbox/nox/_package_version.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020

2121
# fmt: off
2222
_VERSION_MODULE_TEMPLATE = cleandoc('''
23-
"""ATTENTION:
24-
This file is generated by exasol/toolbox/nox/_package_version.py when using:
25-
* either "poetry run -- nox -s project:fix"
26-
* or "poetry run -- nox -s version:check -- --fix"
23+
"""
24+
ATTENTION:
25+
This file is generated by exasol/toolbox/nox/_package_version.py when using:
26+
* either "poetry run -- nox -s project:fix"
27+
* or "poetry run -- nox -s version:check -- --fix"
2728
Do not edit this file manually!
2829
If you need to change the version, do so in the pyproject.toml, e.g. by using
2930
`poetry version X.Y.Z`.

exasol/toolbox/templates/github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Setup Python & Poetry Environment
21-
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
21+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.1
2222

2323
- name: Build Artifacts
2424
run: poetry build

exasol/toolbox/templates/github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.0
18+
uses: exasol/python-toolbox/.github/actions/python-environment@1.7.1
1919

2020
- name: Check Tag Version
2121
# make sure the pushed/created tag matched the project version

0 commit comments

Comments
 (0)