diff --git a/docs/release/1.8.md b/docs/release/1.8.md index efb190c12..37dfe8234 100644 --- a/docs/release/1.8.md +++ b/docs/release/1.8.md @@ -67,6 +67,12 @@ devices.linux.group_vars.netlab_lldp_enable: True ## Bug Fixes +### Bug Fixes in Release 1.8.0-post2 + +* Check IOS XR management IP address only for libvirt provider +* Cannot mix include-tasks and import-tasks in recent Ansible versions +* Cleanup the 'using netlab from Git repo' setup script + ### Bug Fixes in Release 1.8.0-post1 * SSH options should be in key=value format @@ -95,6 +101,11 @@ devices.linux.group_vars.netlab_lldp_enable: True ## Documentation Fixes +### Documentation Fixes in Release 1.8.0-post2 + +* Caveat: you might have to install MPLS drivers on Ubuntu +* Caveat: IOS XR enables the SSH server before it configures users + ### Documentation Fixes in Release 1.8.0 * Changed documentation theme colors and dark mode diff --git a/legacy/setup.py b/legacy/setup.py index 531cb1d88..ca7123dbc 100644 --- a/legacy/setup.py +++ b/legacy/setup.py @@ -5,7 +5,7 @@ sys.path.append('..') -version="1.8.0-post1" +version="1.8.0-post2" long_description = (Path(__file__).parent / "README.md").read_text() diff --git a/netsim/__init__.py b/netsim/__init__.py index efd860987..16740b39b 100755 --- a/netsim/__init__.py +++ b/netsim/__init__.py @@ -2,7 +2,7 @@ import sys -__version__ = "1.8.0-post1" +__version__ = "1.8.0-post2" try: import box