diff --git a/CHANGELOG.md b/CHANGELOG.md index 34ee513f..93a2db75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ CHANGELOG ======= -# 2020.04.XX +# 2020.04.11 - *BREAKING CHANGE*: modify `send_interact` to just make more sense in general... now it supports 1->N "events" to interact with -- see the "handling prompts" section of README for updated example - Moved `record_response` of `Response` object to be a private method, shouldn't really be needed publicly diff --git a/scrapli/__init__.py b/scrapli/__init__.py index 29e72464..823658d1 100644 --- a/scrapli/__init__.py +++ b/scrapli/__init__.py @@ -5,7 +5,7 @@ from scrapli.driver import Scrape -__version__ = "2020.03.29" +__version__ = "2020.04.11" __all__ = ("Scrape",) diff --git a/setup.py b/setup.py index ef3a7e2d..b32dc6c4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setuptools.setup( name="scrapli", - version="2020.03.29", + version="2020.04.11", author=__author__, author_email="carl.r.montanari@gmail.com", description="Screen scraping (ssh|telnet) client focused on network devices",