Skip to content

Commit a57455a

Browse files
authored
Merge pull request #1595 from aboutcode-org/release_v34.0.1
Prepare for release v34.0.1
2 parents 7fbff80 + 21c4caf commit a57455a

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
Release notes
22
=============
33

4-
Version (next)
4+
Version v34.0.1
55
-------------------
66

77
- Add Pipeline to flag ghost packages (#1533)
88
- Add logging configuration (#1533)
99
- Drop support for python 3.8 (#1533)
1010
- Drop using docker-compose and use the built-in "docker compose" instead
1111
- Upgrade core dependencies including Django and Rest Framework
12+
- Fix typo in KEV improver (#1594)
1213

1314

1415
Version v34.0.0

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.0
3+
version = 34.0.1
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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Generated by Django 4.2 on 2024-09-17 16:06
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0062_package_is_ghost"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="packagechangelog",
15+
name="software_version",
16+
field=models.CharField(
17+
default="34.0.1",
18+
help_text="Version of the software at the time of change",
19+
max_length=100,
20+
),
21+
),
22+
migrations.AlterField(
23+
model_name="vulnerabilitychangelog",
24+
name="software_version",
25+
field=models.CharField(
26+
default="34.0.1",
27+
help_text="Version of the software at the time of change",
28+
max_length=100,
29+
),
30+
),
31+
]

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.0"
15+
__version__ = "34.0.1"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)