Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
creekorful committed Aug 13, 2024
1 parent 7a570af commit 3a0b0b9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions NEWS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ News
====


1.3.0
-----

* Primitive implementation of NVD JSON configuration #55.
* Fix typo in CPESet2_3 version exception #33.
* Fixed problem when comparing with _compare_strings #41.
* Updated _VALUE_PATTERN for CPE 2.2 #56.
* Fix DeprecationWarning issues in Python code #57.

1.2.1
-----

Expand Down
10 changes: 7 additions & 3 deletions cpe/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,23 @@
"robertomartinezp@gmail.com"),
"galindale": Developer("Alejandro Galindo García",
"alejandro.galindo@i4s.com"),
"creekorful": Developer("Aloïs Micard",
"alois@micard.lu")
}

__packagename__ = "cpe"
__version__ = "1.2.1"
__version__ = "1.3.0"
__summary__ = "CPE: Common Platform Enumeration for Python"
__keywords__ = "cpe identification naming matching standard specification mitre nist"
__url__ = "https://github.com/nilp0inter/cpe"
__author__ = ", ".join([
DEVELOPERS["nilp0inter"].name,
DEVELOPERS["galindale"].name])
DEVELOPERS["galindale"].name,
DEVELOPERS["creekorful"].name])
__email__ = ", ".join([
DEVELOPERS["nilp0inter"].email,
DEVELOPERS["galindale"].email])
DEVELOPERS["galindale"].email,
DEVELOPERS["creekorful"].email])
__maintainer__ = DEVELOPERS["nilp0inter"].name
__maintainer_email__ = DEVELOPERS["nilp0inter"].email
__license__ = "LGPLv3"

0 comments on commit 3a0b0b9

Please sign in to comment.