Skip to content

Commit

Permalink
Merge pull request #17 from LimberDuck/develop
Browse files Browse the repository at this point in the history
v0.7.2
  • Loading branch information
damian-krawczyk authored May 13, 2022
2 parents ea451d1 + a4f556d commit e351b53
Show file tree
Hide file tree
Showing 8 changed files with 284 additions and 257 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Python package

on: [push]
on:
push:
branches:
- develop
- master
workflow_dispatch:

env:
python_package_name: nessus-file-analyzer
Expand All @@ -13,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ This document records all notable changes to [nessus file analyzer by LimberDuck
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.7.2] - 2022-05-13

### Added

- **Tenable.io files support** - initial support to pars nessus files coming from Tenable.io
- **information about source tool** - information about `scan_file_source` added in `Progress preview`. Now you will see information like `Nessus`, `Tenable.sc`, `Tenable.io`

## [0.7.1] - 2021-10-06

### Fixed
Expand Down Expand Up @@ -101,6 +109,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[0.7.2]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.5.1...v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ GNU GPLv3: [LICENSE].

[Damian Krawczyk] created **[nessus file analyzer]** by [LimberDuck].

[nessus file analyzer]: https://limberduck.org/en/latest/nessus-file-analyzer
[nessus file analyzer]: https://limberduck.org/en/latest/tools/nessus-file-analyzer
[Damian Krawczyk]: https://damiankrawczyk.com
[LimberDuck]: https://limberduck.org
[CHANGELOG]: https://github.com/LimberDuck/nessus-file-analyzer/blob/master/CHANGELOG.md
Expand Down
8 changes: 4 additions & 4 deletions nessus_file_analyzer/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
__summary__ = "nessus file analyzer by LimberDuck is a GUI tool which enables you to parse nessus scan files from " \
"Nessus and Tenable.SC by (C) Tenable, Inc. and exports results to a Microsoft Excel Workbook for " \
"effortless analysis."
__uri__ = "https://limberduck.org/en/latest/nessus-file-analyzer"
__version__ = "0.7.1"
__release_date__ = "2021.10.06"
__uri__ = "https://limberduck.org"
__version__ = "0.7.2"
__release_date__ = "2022.05.13"
__author__ = u"Damian Krawczyk"
__email__ = "damian.krawczyk@limberduck.org"
__license_name__ = "GNU GPLv3"
__license_link__ = "https://www.gnu.org/licenses/gpl-3.0.en.html"
__copyright__ = u"\N{COPYRIGHT SIGN} 2019-2021 by %s" % __author__
__copyright__ = u"\N{COPYRIGHT SIGN} 2019-2022 by %s" % __author__
2 changes: 1 addition & 1 deletion nessus_file_analyzer/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.1"
__version__ = "0.7.2"
502 changes: 258 additions & 244 deletions nessus_file_analyzer/app.py

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
chardet>=4.0.0
imageio>=2.9.0
nessus-file-reader>=0.3.0
PyQt5>=5.15.4
XlsxWriter>=3.0.1
imageio>=2.19.1
nessus-file-reader>=0.4.1
PyQt5>=5.15.6
XlsxWriter>=3.0.3
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit e351b53

Please sign in to comment.