Skip to content

Commit

Permalink
Bumb version to 1.0.1
Browse files Browse the repository at this point in the history
Fixed in this release:
* get_interfaces_ip: handle case of interface without an address, add secondary ipv6 IPs (refactored method)
* remove setuptools_rust dependency (unused)
  • Loading branch information
jbemmel committed Sep 15, 2023
1 parent 4916f47 commit f9175e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "napalm-srl"
version="1.0.0"
version="1.0.1"
description="Network Automation and Programmability Abstraction Layer driver for Nokia SR Linux"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="napalm-srl",
version="1.0.0",
version="1.0.1",
packages=find_packages(),
author="Jose Valente",
author_email="jose.valente@nokia.com",
Expand Down
4 changes: 2 additions & 2 deletions test/ci/get_interfaces_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@

# get_interfaces_ip() should not fail when no ip addresses are present
ip_addresses = device.get_interfaces_ip()

assert(ip_addresses.get("system0.0") == {})
assert(ip_addresses is not None)
assert(ip_addresses.get("system0.0") == {})

0 comments on commit f9175e5

Please sign in to comment.