From 4d6070212dcd012ef4f7c79fc2d7a03309517ce4 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Mon, 17 Oct 2022 10:54:45 +0200 Subject: [PATCH] Bump version Signed-off-by: Philippe Ombredanne --- CHANGELOG.rst | 11 +++++++++-- setup.cfg | 2 +- vulnerablecode/__init__.py | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0b305541b..96eb3bacb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Release notes ============= +Version v30.1.1 +---------------- + +- We added a new web UI link to explain how to obtain an API for the publicly + hosted VulnerableCode + + Version v30.1.0 ---------------- @@ -32,7 +39,7 @@ This is a major version that is not backward compatible. - We removed the ability to edit relationships from the UI. The UI is now read-only. -- We replace the web UI with a brand new UI based on the same overall look and feel as ScanCode.io. +- We replaced the web UI with a brand new UI based on the same overall look and feel as ScanCode.io. - We added support for NixOS as a Linux deployment target. @@ -62,7 +69,7 @@ This is a major version that is not backward compatible. another aliases/ endpoint to lookup for vulnerabilities by aliases. These two endpoints will be replaced by query parameters on the main vulnerabilities/ endpoint when stabilized. -- Added filters for vulnerabilities endpoint to get fixed packages in accordance +- We added filters for vulnerabilities endpoint to get fixed packages in accordance to the details given in filters: For example, when you call the endpoint this way ``/api/vulnerabilities?type=pypi&namespace=foo&name=bar``, you will receive only fixed versioned purls of the type ``pypi``, namespace ``foo`` and name ``bar``. diff --git a/setup.cfg b/setup.cfg index d7b405328..b1bf0b721 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 30.1.0 +version = 30.1.1 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 5de36703a..85560a2b1 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -12,7 +12,7 @@ import warnings from pathlib import Path -__version__ = "30.1.0" +__version__ = "30.1.1" def command_line():