Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,17 @@ Release notes
=============


Version v36.1.0
---------------------

- Remove admin panel #1885
- Support running pipelines in scheduled task queue #1871
- Optimize export management command #1868
- Fix alpine linux importer #1861
- Stop github OSV importer crashes #1854
- Make advisory content_id a unique field #1864


Version v36.0.0
---------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[metadata]
name = vulnerablecode
version = 36.0.0
version = 36.1.0
license = Apache-2.0 AND CC-BY-SA-4.0

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion vulnerablecode/__init__.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,7 +14,7 @@

import git

__version__ = "36.0.0"
__version__ = "36.1.0"


PROJECT_DIR = Path(__file__).resolve().parent
Expand Down