Skip to content

Commit

Permalink
Release 24.2.1 (#371)
Browse files Browse the repository at this point in the history
* Prepare release 24.2.1

* add migration to increment version

Signed-off-by: joseph-sentry <joseph.sawaya@sentry.io>

---------

Signed-off-by: joseph-sentry <joseph.sawaya@sentry.io>
Co-authored-by: joseph-sentry <joseph.sawaya@sentry.io>
  • Loading branch information
codecov-releaser and joseph-sentry committed Feb 2, 2024
1 parent c21122c commit 5c8102a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23.12.4
24.2.1
18 changes: 18 additions & 0 deletions core/migrations/0047_increment_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.7 on 2024-01-31 18:04

from django.db import migrations


def update_version(apps, schema):
Constants = apps.get_model("core", "Constants")
version = Constants.objects.get(key="version")
version.value = "24.2.1"
version.save()


class Migration(migrations.Migration):
dependencies = [
("core", "0046_repository_coverage_enabled"),
]

operations = [migrations.RunPython(update_version)]

0 comments on commit 5c8102a

Please sign in to comment.