Skip to content

Commit

Permalink
Merge pull request #6 from LimberDuck/develop
Browse files Browse the repository at this point in the history
v0.4.1
  • Loading branch information
damian-krawczyk committed May 13, 2022
2 parents 341a8fc + 27e457d commit bc4d281
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install tools
run: |
python -m pip install --upgrade pip build
python -m pip install --upgrade pip build setuptools wheel twine
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Build package
run: python -m build
run: python setup.py sdist bdist_wheel

- name: Install locally
run: |
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ This document records all notable changes to [nessus file reader 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.4.1] - 2022-05-13

### Fixed

- requirements installation fixed

## [0.4.0] - 2022-05-13

### Added

- **commandline interface** - from now on this package will provide you possibility to run `nfr` in commandline. After installation type `nf` or `nfr --help` to find out more.
- **commandline interface** - from now on this package will provide you possibility to run `nfr` in commandline. After installation type `nfr` or `nfr --help` to find out more.
- **Tenable.io files support** - initial support to pars nessus files coming from Tenable.io


Expand All @@ -34,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[0.4.1]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.1.0...v0.2.0
Expand Down
8 changes: 4 additions & 4 deletions nessus_file_reader/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
__title__ = "nessus file reader by LimberDuck"
__package_name__ = "nessus-file-reader"
__icon__ = "LimberDuck-nessus-file-reader.ico"
__summary__ = "nessus file reader by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a python module" \
__summary__ = "nessus file reader by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a CLI tool and python module" \
"created to quickly parse nessus files containing the results of scans" \
"performed by using Nessus by (C) Tenable, Inc."
__uri__ = "https://github.com/LimberDuck"
__version__ = "0.1.0"
__release_date__ = "2019.06.23"
__version__ = "0.4.1"
__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 by %s" % __author__
__copyright__ = u"\N{COPYRIGHT SIGN} 2019-2022 by %s" % __author__
2 changes: 1 addition & 1 deletion nessus_file_reader/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
with open("README.md", "r") as fh:
long_description = fh.read()

# with open('requirements.txt') as f:
# required = f.read().splitlines()
with open('requirements.txt') as f:
required = f.read().splitlines()

about = {}
with open("nessus_file_reader/_version.py") as f:
Expand All @@ -23,7 +23,7 @@
long_description_content_type="text/markdown",
url="https://github.com/LimberDuck/nessus-file-reader",
packages=setuptools.find_packages(),
# install_requires=required,
install_requires=required,
entry_points={
"console_scripts": [
"nfr = nessus_file_reader.__main__:main"
Expand Down

0 comments on commit bc4d281

Please sign in to comment.