Skip to content

Commit

Permalink
Update to v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HubTou committed Mar 2, 2024
1 parent 746236c commit 2c257ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = pnu-vuxml
description = FreeBSD VuXML library and query tool
long_description = file: README.md
long_description_content_type = text/markdown
version = 1.0.1
version = 1.0.2
license = BSD 3-Clause License
license_files = License
author = Hubert Tournier
Expand Down
2 changes: 1 addition & 1 deletion src/vuxml/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def search_vulns_by_package(vuxml, package_name, package_version, regex_names=Fa
altered_affected_version = re.sub(r"_.*", "", affected_version)
altered_affected_version = re.sub(r",.*", "", altered_affected_version)
altered_affected_version = re.sub(r"\.\*", "", altered_affected_version)
logging.warning(
logging.debug(
"Version number '%s' handled as '%s'",
affected_version,
altered_affected_version
Expand Down
2 changes: 1 addition & 1 deletion src/vuxml/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
search_vulns_by_modified_date, print_vuln

# Version string used by the what(1) and ident(1) commands:
ID = "@(#) $Id: vuxml - FreeBSD VuXML library and query tool v1.0.1 (March 2, 2024) by Hubert Tournier $"
ID = "@(#) $Id: vuxml - FreeBSD VuXML library and query tool v1.0.2 (March 2, 2024) by Hubert Tournier $"

# Default parameters. Can be overcome by environment variables, then command line options
parameters = {
Expand Down

0 comments on commit 2c257ed

Please sign in to comment.