Skip to content

Commit 412b324

Browse files
authored
Merge pull request #834 from netenglabs/bump-version-up
Bump version up to 0.20.0rc1
2 parents 9be850c + a9adb26 commit 412b324

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "suzieq"
3-
version = "0.19.1"
3+
version = "0.20.0rc1"
44
description = "A framework and application for network observability"
55
readme = 'README.md'
66
repository = 'https://github.com/netenglabs/suzieq'

suzieq/config/textfsm_templates/iosxe_show_mac.tfsm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,5 @@ flags4
7171
^\s*$$
7272
^Total\s+Mac\s+Addresses
7373
^MultiCast\s+Entries -> End
74+
75+
# Original from ntc-templates github repo (https://github.com/networktocode/ntc-templates)

suzieq/poller/worker/services/macs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _add_mackey_protocol(self, entry):
3030
if vlan:
3131
if isinstance(vlan, str):
3232
if not vlan.isnumeric():
33-
entry['vlan'] = 0
33+
vlan = '0'
3434

3535
entry['vlan'] = int(vlan)
3636
else:

suzieq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Store the Suzieq version string."""
33

44

5-
SUZIEQ_VERSION = "0.19.1"
5+
SUZIEQ_VERSION = "0.20.0rc1"
66

77
if __name__ == '__main__':
88
print(SUZIEQ_VERSION)

0 commit comments

Comments
 (0)