diff --git a/CHANGES.md b/CHANGES.md index 42e8860..20bc3dc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,12 @@ - Summary: - Insert something here +## Version: 1.9.36 + +- Released: 2023-11-17 +- Summary: + - Update the [documentation][3] + ## Version: 1.9.35 - Released: 2023-11-17 @@ -2068,3 +2074,4 @@ [1]: https://datatracker.ietf.org/doc/html/rfc6052 [2]: https://en.wikipedia.org/wiki/NAT64 +[3]: http://www.pennington.net/py/ciscoconfparse/ diff --git a/ciscoconfparse/ciscoconfparse.py b/ciscoconfparse/ciscoconfparse.py index f10de03..8775bd1 100644 --- a/ciscoconfparse/ciscoconfparse.py +++ b/ciscoconfparse/ciscoconfparse.py @@ -226,7 +226,7 @@ def initialize_globals(): ENCODING = locale.getpreferredencoding() __author_email__ = r"mike /at\ pennington [dot] net" - __author__ = "David Michael Pennington <{__author_email__}>" + __author__ = f"David Michael Pennington <{__author_email__}>" __copyright__ = f'2007-{time.strftime("%Y")}, {__author__}' __license__ = "GPLv3" __status__ = "Production" diff --git a/pyproject.toml b/pyproject.toml index 9764c4d..7133e2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ requires-python = ">=3.8.0" [tool.poetry] name = "ciscoconfparse" -version = "1.9.35" +version = "1.9.36" description = "Parse, Audit, Query, Build, and Modify Cisco IOS-style and JunOS-style configs" license = "GPL-3.0-only" authors = [ diff --git a/sphinx-doc/installation.rst b/sphinx-doc/installation.rst index 675e970..eb53006 100755 --- a/sphinx-doc/installation.rst +++ b/sphinx-doc/installation.rst @@ -100,7 +100,7 @@ Alternatively you can install with pip_: :: If you have a specific version of ciscoconfparse in mind, you can specify that at the command-line :: - pip install ciscoconfparse==1.9.35 + pip install ciscoconfparse==1.9.36 Install with setuptools @@ -114,7 +114,7 @@ If you don't have pip_, you can use setuptools_... :: If you have a specific version of ciscoconfparse in mind, you can specify that at the command-line :: - easy_install -U ciscoconfparse==1.9.35 + easy_install -U ciscoconfparse==1.9.36 Install from the source ~~~~~~~~~~~~~~~~~~~~~~~