Skip to content

Commit 56bfe19

Browse files
v0.1.2
1 parent a028f8e commit 56bfe19

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ This document records all notable changes to [LimberDuck NFA (nessus file analyz
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.2] - 2026-01-18
9+
10+
### Fixed
11+
12+
- requirements updated to require nessus-file-analyzer v0.12.0 or newer
13+
- author name corrected
14+
815
## [0.1.1] - 2026-01-18
916

1017
### Fixed

nfa_plugin_software_enumeration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Software Enumeration Plugin for NFA.
44
"""
55

6-
__version__ = "0.1.1"
6+
__version__ = "0.1.2"

nfa_plugin_software_enumeration/software_enumeration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def get_metadata(self) -> PluginMetadata:
2020
return PluginMetadata(
2121
name="Software Enumeration",
2222
id="software_enumeration",
23-
version="0.1.1",
23+
version="0.1.2",
2424
description="Generate inventory of installed software on Windows and Linux hosts",
25-
author="NFA Plugin Examples",
25+
author="Damian Krawczyk",
2626
plugin_ids=[20811, 22869]
2727
)
2828

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nessus_file_analyzer>=0.11.0
1+
nessus_file_analyzer>=0.12.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
url="https://limberduck.org/en/latest/tools/nessus-file-analyzer/advanced-reports/software-enumeration/",
1515
packages=setuptools.find_packages(),
1616
install_requires=[
17-
"nessus-file-analyzer>=0.11.0",
17+
"nessus-file-analyzer>=0.12.0",
1818
],
1919
entry_points={
2020
"nfa.plugins": [

0 commit comments

Comments
 (0)