diff --git a/CHANGELOG.md b/CHANGELOG.md index 1273e01a5a..dbea6b3dfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ # Changelog -## [1.7.0](https://github.com/networktocode/ntc-templates/tree/1.5.0) (2021-03-11) +## [2.0.0](https://github.com/networktocode/ntc-templates/tree/1.5.0) (2021-03-11) -[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v1.6.0...1.7.0) +[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v2.0.0...v1.7.0) + +**Merged pull requests:** + +- Migrate packaging to use poetry [\#882](https://github.com/networktocode/ntc-templates/pull/882) ([jmcgill298](https://github.com/jmcgill298)) + +## [v1.7.0](https://github.com/networktocode/ntc-templates/tree/v1.7.0) (2021-03-11) + +[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v1.6.0...v1.7.0) **Implemented enhancements:** @@ -30,6 +38,7 @@ **Merged pull requests:** +- Release v1.7.0 [\#889](https://github.com/networktocode/ntc-templates/pull/889) ([jmcgill298](https://github.com/jmcgill298)) - new alcatel\_sros tmpl, 'show service sdp' [\#886](https://github.com/networktocode/ntc-templates/pull/886) ([h4ndzdatm0ld](https://github.com/h4ndzdatm0ld)) - New Template: alcatel\_sros\_show\_router\_rsvp\_interface [\#884](https://github.com/networktocode/ntc-templates/pull/884) ([h4ndzdatm0ld](https://github.com/h4ndzdatm0ld)) - \#784-cisco\_asa\_show\_running-config\_all\_crypto\_map.textfsm [\#883](https://github.com/networktocode/ntc-templates/pull/883) ([diepes](https://github.com/diepes)) diff --git a/ntc_templates/__init__.py b/ntc_templates/__init__.py index 2ce6c62561..f8548d13d6 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__ = "1.7.0" +__version__ = "2.0.0" diff --git a/pyproject.toml b/pyproject.toml index 09bb6bf66d..aaaaf97fa4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ntc_templates" -version = "1.6.0" +version = "2.0.0" description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable." authors = ["Network to Code "] license = "Apache-2.0"