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..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)", @@ -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": [