Skip to content

Commit

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

* add migration

---------

Co-authored-by: Nora Shapiro <nora.shapiro@sentry.io>
  • Loading branch information
codecov-releaser and nora-codecov committed Apr 1, 2024
1 parent ace339a commit 42f597e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.2.1
24.4.1
19 changes: 19 additions & 0 deletions core/migrations/0048_increment_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.11 on 2024-04-01 19:36

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.4.1"
version.save()


class Migration(migrations.Migration):

dependencies = [
("core", "0047_increment_version"),
]

operations = [migrations.RunPython(update_version)]

0 comments on commit 42f597e

Please sign in to comment.