diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b17575d72..f13f5b92f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.3.1](https://github.com/networktocode/ntc-templates/tree/2.3.1) (2021-08-30) + +[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v2.3.0...2.3.1) + +**Closed issues:** + +- cisco\_ios\_show\_ip\_access-lists Account for singluar match [\#972](https://github.com/networktocode/ntc-templates/issues/972) ([mitchell-foxworth](https://github.com/mitchell-foxworth)) + +**Merged pull requests:** + +- ntc_templates/templates/cisco_ios_show_ip_access-lists.textfsm [\#973](https://github.com/networktocode/ntc-templates/pull/973) ([mitchell-foxworth](https://github.com/mitchell-foxworth)) + ## [2.3.0](https://github.com/networktocode/ntc-templates/tree/2.3.0) (2021-08-27) [Full Changelog](https://github.com/networktocode/ntc-templates/compare/v2.2.2...2.3.0) diff --git a/ntc_templates/__init__.py b/ntc_templates/__init__.py index fe19123254..9dcf7876b1 100644 --- a/ntc_templates/__init__.py +++ b/ntc_templates/__init__.py @@ -1,3 +1,3 @@ """ntc_templates - Parse raw output from network devices and return structured data.""" -__version__ = "2.3.0" +__version__ = "2.3.1" diff --git a/pyproject.toml b/pyproject.toml index 5410d5f724..bc9616b763 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ntc_templates" -version = "2.3.0" +version = "2.3.1" description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable." authors = ["Network to Code "] license = "Apache-2.0"