Skip to content

Commit db2c45c

Browse files
committed
Release 0.17.0
1 parent d0f875d commit db2c45c

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
1212
### Fixed
1313
### Security
1414

15+
## [0.17.0]
16+
### Added
17+
- ASADevice supports connecting to HA Peer
18+
- ASADevice `connected_interface`, `ip_address`, `ipv4_addresses`, `ipv6_addresses`, `ip_protocol`, `peer_device`, `peer_ip_address`, `peer_ipv4_addresses`, `peer_ipv6_addresses`, properties
19+
- ASADevice `enable_scp`, `reboot_standby` methods
20+
- IOSDevice now supports setting `fast_cli` on Netmiko driver
21+
### Changed
22+
- All Drivers `reboot` no longer accepts `confirm` argument
23+
- AIREOSDevice ``transfer_image_to_ap`` attempts to check that install image matches expected value multiple times.
24+
- ASADevice `file_copy` now supports transferring files to active and standby devices
25+
- EOSDevice `config` method accepts a list of commands
26+
- EOSDevice `show` method accepts a list of commands
27+
- JUNOSDevice `config` method accepts a list of commands
28+
- JUNOSDevice `show` method accepts a list of commands
29+
### Fixed
30+
- Account for additional output for verify if OS Image is booted
31+
- Handle Upgrades by disabling `fast_cli` during reboot process
32+
33+
1534
## [0.16.0]
1635
### Added
1736
- ASADevice `is_active`, `peer_redundancy_state`, `redundancy_mode`, `redundancy_state` methods

pyntc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
except ImportError:
1313
from ConfigParser import SafeConfigParser
1414

15-
__version__ = "0.16.0"
15+
__version__ = "0.17.0"
1616

1717
LIB_PATH_ENV_VAR = "PYNTC_CONF"
1818
LIB_PATH_DEFAULT = "~/.ntc.conf"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "pyntc"
7-
version = "0.16.0"
7+
version = "0.17.0"
88
description = "SDK to simplify common workflows for Network Devices."
99
authors = ["NTC <[email protected]>"]
1010
readme = "README.md"

0 commit comments

Comments
 (0)