From baafcc87b1f1057f78a0f68efb4e4c828fbc59c0 Mon Sep 17 00:00:00 2001 From: Doyle Rowland Date: Fri, 19 May 2023 18:17:55 -0400 Subject: [PATCH] chore: update version strings --- docs/source/conf.py | 15 +++++++-------- pyproject.toml | 2 +- src/docformatter/__pkginfo__.py | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 984c05c..2167dba 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,23 +6,22 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'docformatter' -copyright = '2022-2023, Steven Myint' -author = 'Steven Myint' -release = '1.7.0' +project = "docformatter" +copyright = "2022-2023, Steven Myint" +author = "Steven Myint" +release = "1.7.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [] -templates_path = ['_templates'] +templates_path = ["_templates"] exclude_patterns = [] - # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'alabaster' -html_static_path = ['_static'] +html_theme = "alabaster" +html_static_path = ["_static"] diff --git a/pyproject.toml b/pyproject.toml index 00de75e..171a4d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "docformatter" -version = "1.7.0" +version = "1.7.1" description = "Formats docstrings to follow PEP 257" authors = ["Steven Myint"] maintainers = [ diff --git a/src/docformatter/__pkginfo__.py b/src/docformatter/__pkginfo__.py index c9e6e66..e98e7ea 100644 --- a/src/docformatter/__pkginfo__.py +++ b/src/docformatter/__pkginfo__.py @@ -23,4 +23,4 @@ # SOFTWARE. """Package information for docformatter.""" -__version__ = "1.7.0" +__version__ = "1.7.1"