Skip to content

Commit

Permalink
Merge pull request #1656 from aboutcode-org/prepare_release_v34.3.2
Browse files Browse the repository at this point in the history
Prepare for release v34.3.2
  • Loading branch information
TG1999 authored Nov 15, 2024
2 parents 04fc3e0 + 7d4a044 commit d029151
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release notes
=============

Version v34.3.2
----------------

- HOTFIX: Add reference score to package endpoint #1655


Version v34.3.1
----------------

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.3.1
version = 34.3.2
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.16 on 2024-11-15 06:02

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0080_alter_packagechangelog_software_version_and_more"),
]

operations = [
migrations.AlterField(
model_name="packagechangelog",
name="software_version",
field=models.CharField(
default="34.3.2",
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.3.2",
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.3.1"
__version__ = "34.3.2"


def command_line():
Expand Down

0 comments on commit d029151

Please sign in to comment.