Skip to content

Commit 289f4b8

Browse files
authored
Merge pull request #1605 from aboutcode-org/bump_version
Bump VCIO version
2 parents 3543733 + f332fb5 commit 289f4b8

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = vulnerablecode
3-
version = 34.0.1
3+
version = 34.0.2
44
license = Apache-2.0 AND CC-BY-SA-4.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Generated by Django 4.2.15 on 2024-10-07 12:28
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0069_exploit_delete_kev"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="advisory",
15+
name="created_by",
16+
field=models.CharField(
17+
help_text="Fully qualified name of the importer prefixed with themodule name importing the advisory. Eg:vulnerabilities.pipeline.nginx_importer.NginxImporterPipeline",
18+
max_length=100,
19+
),
20+
),
21+
migrations.AlterField(
22+
model_name="packagechangelog",
23+
name="software_version",
24+
field=models.CharField(
25+
default="34.0.2",
26+
help_text="Version of the software at the time of change",
27+
max_length=100,
28+
),
29+
),
30+
migrations.AlterField(
31+
model_name="vulnerabilitychangelog",
32+
name="software_version",
33+
field=models.CharField(
34+
default="34.0.2",
35+
help_text="Version of the software at the time of change",
36+
max_length=100,
37+
),
38+
),
39+
]

vulnerablecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import warnings
1313
from pathlib import Path
1414

15-
__version__ = "34.0.1"
15+
__version__ = "34.0.2"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)