Skip to content

Commit

Permalink
Update to v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HubTou authored Mar 18, 2024
1 parent 4e5fe79 commit 2f79dbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.2.0
version = 1.2.1
license = BSD 3-Clause License
license_files = License
author = Hubert Tournier
Expand Down
4 changes: 2 additions & 2 deletions src/vuxml/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def search_vulns_by_package(vuxml, package_name, package_version, regex_names=Fa
try:
package_version2 = packaging.version.parse(package_version)
except packaging.version.InvalidVersion:
logging.warning(
logging.debug(
"Invalid version '%s' (translated as '%s') for specified package '%s'",
package_version_orig,
package_version,
Expand Down Expand Up @@ -375,7 +375,7 @@ def search_vulns_by_package(vuxml, package_name, package_version, regex_names=Fa
try:
affected_version2 = packaging.version.parse(affected_version)
except packaging.version.InvalidVersion:
logging.warning(
logging.debug(
"Invalid version '%s' (translated as '%s') for affected package '%s'",
affected_version_orig,
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.2.0 (March 17, 2024) by Hubert Tournier $"
ID = "@(#) $Id: vuxml - FreeBSD VuXML library and query tool v1.2.1 (March 18, 2024) by Hubert Tournier $"

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

0 comments on commit 2f79dbf

Please sign in to comment.