diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7f83e390a..eecd5c385 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ Release notes ============= +Version v33.6.0 +---------------- + +- We added support to write packages and vulnerabilities at the time of import. + + Version v33.5.0 ---------------- @@ -9,7 +15,6 @@ Version v33.5.0 - We added clickable links to the Essentials tab of the Vulnerability details template that enable the user to navigate to the Fixed by packages tab and the Affected packages tab. - We fixed severity range issue for handling unknown scores. -- We added support to write packages and vulnerabilities at the time of import. Version v33.4.0 ---------------- diff --git a/setup.cfg b/setup.cfg index 0dcc9d201..a10cd0924 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 33.5.0 +version = 33.6.0 license = Apache-2.0 AND CC-BY-SA-4.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 diff --git a/vulnerablecode/__init__.py b/vulnerablecode/__init__.py index f976953d0..f354677dd 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -12,7 +12,7 @@ import warnings from pathlib import Path -__version__ = "33.5.0" +__version__ = "33.6.0" def command_line():