diff --git a/CHANGELOG.md b/CHANGELOG.md index f13f5b92f5..f2764b36a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.3.2](https://github.com/networktocode/ntc-templates/tree/2.3.2) (2021-09-13) + +[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v2.3.1...2.3.2) + +**Bugfixes** + +- cisco\_ios\_show\_ip\_bgp\_summary Account for dotted ASN notation [\#987](https://github.com/networktocode/ntc-templates/pull/987) ([thomasbridge74](https://github.com/thomasbridge74)) +- cisco\_nxos\_show\_interface\_status Account for blank type [\#980](https://github.com/networktocode/ntc-templates/pull/980) ([Kani999](https://github.com/Kani999)) +- cisco\_ios\_show\_interfaces Account for `App Interface` [\#968](https://github.com/networktocode/ntc-templates/pull/968) ([a-finocchiaro](https://github.com/a-finocchiaro)) + ## [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) diff --git a/ntc_templates/__init__.py b/ntc_templates/__init__.py index 9dcf7876b1..80e9b74e77 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.1" +__version__ = "2.3.2" diff --git a/pyproject.toml b/pyproject.toml index bc9616b763..35a1e3055e 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.1" +version = "2.3.2" description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable." authors = ["Network to Code "] license = "Apache-2.0"