diff --git a/NEWS.txt b/NEWS.txt index 935c65e..ba7287d 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -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 ----- diff --git a/cpe/__meta__.py b/cpe/__meta__.py index e8b22f1..c5b64bc 100644 --- a/cpe/__meta__.py +++ b/cpe/__meta__.py @@ -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"