Skip to content

Commit 3856f05

Browse files
authored
Merge pull request #914 from nexB/prep-30-rc6
Prepare v30.rc6
2 parents 6688cb6 + cc6f47d commit 3856f05

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
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 = 30.0.0rc5
3+
version = 30.0.0rc6
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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 4.0.7 on 2022-09-09 16:12
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('vulnerabilities', '0025_remove_duplicate_reference_urls'),
10+
]
11+
12+
operations = [
13+
migrations.AlterUniqueTogether(
14+
name='vulnerabilityreference',
15+
unique_together=set(),
16+
),
17+
]
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
# Generated by Django 4.0.7 on 2022-09-09 12:34
1+
# Generated by Django 4.0.7 on 2022-09-09 16:19
22

33
from django.db import migrations, models
44

55

66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('vulnerabilities', '0025_remove_duplicate_reference_urls'),
9+
('vulnerabilities', '0026_alter_vulnerabilityreference_unique_together'),
1010
]
1111

1212
operations = [
13-
migrations.AlterUniqueTogether(
14-
name='vulnerabilityreference',
15-
unique_together=set(),
16-
),
1713
migrations.AlterField(
1814
model_name='vulnerabilityreference',
1915
name='url',

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__ = "30.0.0rc5"
15+
__version__ = "30.0.0rc6"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)