Skip to content

Commit 59d8ebf

Browse files
authored
chore: update version strings (#214)
* chore: update version strings * chore: fix broken workflow
1 parent ddd3d0f commit 59d8ebf

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

.github/workflows/do-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,8 @@ jobs:
7474
(echo "### No update" && exit 1) || (echo "### Commit update")
7575
7676
- uses: EndBug/add-and-commit@v9
77-
if: ${{ env.do_release == 1 }}
7877
name: Commit and push if diff
79-
if: success()
78+
if: ${{ env.do_release == 1 }}
8079
with:
8180
add: CHANGELOG.md
8281
message: 'chore: update CHANGELOG.md for new release'

docs/source/conf.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9-
project = 'docformatter'
10-
copyright = '2022-2023, Steven Myint'
11-
author = 'Steven Myint'
12-
release = '1.7.0'
9+
project = "docformatter"
10+
copyright = "2022-2023, Steven Myint"
11+
author = "Steven Myint"
12+
release = "1.7.1"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1616

1717
extensions = []
1818

19-
templates_path = ['_templates']
19+
templates_path = ["_templates"]
2020
exclude_patterns = []
2121

2222

23-
2423
# -- Options for HTML output -------------------------------------------------
2524
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2625

27-
html_theme = 'alabaster'
28-
html_static_path = ['_static']
26+
html_theme = "alabaster"
27+
html_static_path = ["_static"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "docformatter"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
description = "Formats docstrings to follow PEP 257"
55
authors = ["Steven Myint"]
66
maintainers = [

src/docformatter/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
# SOFTWARE.
2424
"""Package information for docformatter."""
2525

26-
__version__ = "1.7.0"
26+
__version__ = "1.7.1"

0 commit comments

Comments
 (0)