From 56bfe198fb0f2bbceed8688b5bab8709137dacd0 Mon Sep 17 00:00:00 2001 From: Damian Krawczyk Date: Sun, 18 Jan 2026 19:59:02 +0100 Subject: [PATCH 1/2] v0.1.2 --- CHANGELOG.md | 7 +++++++ nfa_plugin_software_enumeration/__init__.py | 2 +- nfa_plugin_software_enumeration/software_enumeration.py | 4 ++-- requirements.txt | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f42f77..58debbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ This document records all notable changes to [LimberDuck NFA (nessus file analyz The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2] - 2026-01-18 + +### Fixed + +- requirements updated to require nessus-file-analyzer v0.12.0 or newer +- author name corrected + ## [0.1.1] - 2026-01-18 ### Fixed diff --git a/nfa_plugin_software_enumeration/__init__.py b/nfa_plugin_software_enumeration/__init__.py index 5d936e6..98eb7b5 100644 --- a/nfa_plugin_software_enumeration/__init__.py +++ b/nfa_plugin_software_enumeration/__init__.py @@ -3,4 +3,4 @@ Software Enumeration Plugin for NFA. """ -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/nfa_plugin_software_enumeration/software_enumeration.py b/nfa_plugin_software_enumeration/software_enumeration.py index 01d7035..51dddbc 100644 --- a/nfa_plugin_software_enumeration/software_enumeration.py +++ b/nfa_plugin_software_enumeration/software_enumeration.py @@ -20,9 +20,9 @@ def get_metadata(self) -> PluginMetadata: return PluginMetadata( name="Software Enumeration", id="software_enumeration", - version="0.1.1", + version="0.1.2", description="Generate inventory of installed software on Windows and Linux hosts", - author="NFA Plugin Examples", + author="Damian Krawczyk", plugin_ids=[20811, 22869] ) diff --git a/requirements.txt b/requirements.txt index e21751f..7909005 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -nessus_file_analyzer>=0.11.0 \ No newline at end of file +nessus_file_analyzer>=0.12.0 \ No newline at end of file diff --git a/setup.py b/setup.py index c4435d3..e2b758a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ url="https://limberduck.org/en/latest/tools/nessus-file-analyzer/advanced-reports/software-enumeration/", packages=setuptools.find_packages(), install_requires=[ - "nessus-file-analyzer>=0.11.0", + "nessus-file-analyzer>=0.12.0", ], entry_points={ "nfa.plugins": [ From ff6015f303c9e140bc65bb95c012f07e1b1f70e7 Mon Sep 17 00:00:00 2001 From: Damian Krawczyk Date: Sun, 18 Jan 2026 20:01:49 +0100 Subject: [PATCH 2/2] version update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e2b758a..4fa8896 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="nfa-plugin-software-enumeration", - version="0.1.1", + version="0.1.2", author="Damian Krawczyk", author_email="damian.krawczyk@limberduck.org", description="Software Enumeration report plugin for LimberDuck NFA (nessus file analyzer)",