diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f52bf437a..3aaed5212 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Release notes ============= +Version v38.2.0 +--------------------- + +- feat: add high priority queue and run version range unfurling pipeline more frequently (https://github.com/aboutcode-org/vulnerablecode/pull/2256) + Version v38.1.0 --------------------- diff --git a/setup.cfg b/setup.cfg index 16dbe9b9a..b91fd55a3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 38.1.0 +version = 38.2.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 4966e4c04..86794a0b9 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -14,7 +14,7 @@ import git -__version__ = "38.1.0" +__version__ = "38.2.0" PROJECT_DIR = Path(__file__).resolve().parent