diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c85f1b96..57d224c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog Next Release ---------------- + +v5.0.0 +--------- + +- Add `/api/docs` Swagger API documentation for API endpoints. - Add `/api/from_purl/purl2git` endpoint to get a git repo for a purl. - Add `/api/to_purl/go` endpoint to get a purl from a golang import string or a package string in go.mod. - Support indexing of PURLs listed in https://github.com/nexB/purldb/issues/326, @@ -13,12 +18,6 @@ Next Release - Store ``source_symbols`` and ``source_strings`` in ``extra_data`` field. https://github.com/nexB/purldb/pull/351 -v4.0.0 ---------- - -- Add `/api/docs` Swagger API documentation for API endpoints. - - v3.0.0 ------- diff --git a/minecode/models.py b/minecode/models.py index a6f17488..06732ca5 100644 --- a/minecode/models.py +++ b/minecode/models.py @@ -787,6 +787,7 @@ def process_scan_results( scan_results_location=scan_results_location, scan_summary_location=scan_summary_location, project_extra_data=project_extra_data, + job_timeout=1200, ) return job diff --git a/purldb_project/__init__.py b/purldb_project/__init__.py index e0b80baa..7399cfd5 100644 --- a/purldb_project/__init__.py +++ b/purldb_project/__init__.py @@ -10,7 +10,7 @@ import os import sys -__version__ = "3.0.0" +__version__ = "5.0.0" def command_line(): diff --git a/setup.cfg b/setup.cfg index 5a55f3a2..8c0a2aeb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = purldb -version = 4.0.0 +version = 5.0.0 license_files = LICENSE AUTHORS.rst