Skip to content

Commit

Permalink
Merge pull request #1595 from aboutcode-org/release_v34.0.1
Browse files Browse the repository at this point in the history
Prepare for release v34.0.1
  • Loading branch information
TG1999 authored Sep 17, 2024
2 parents 7fbff80 + 21c4caf commit a57455a
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Release notes
=============

Version (next)
Version v34.0.1
-------------------

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


Version v34.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = vulnerablecode
version = 34.0.0
version = 34.0.1
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 4.2 on 2024-09-17 16:06

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0062_package_is_ghost"),
]

operations = [
migrations.AlterField(
model_name="packagechangelog",
name="software_version",
field=models.CharField(
default="34.0.1",
help_text="Version of the software at the time of change",
max_length=100,
),
),
migrations.AlterField(
model_name="vulnerabilitychangelog",
name="software_version",
field=models.CharField(
default="34.0.1",
help_text="Version of the software at the time of change",
max_length=100,
),
),
]
2 changes: 1 addition & 1 deletion vulnerablecode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import warnings
from pathlib import Path

__version__ = "34.0.0"
__version__ = "34.0.1"


def command_line():
Expand Down

0 comments on commit a57455a

Please sign in to comment.