Skip to content

Commit 79af7f9

Browse files
Release 26.3.4 (#735)
* Prepare release 26.3.4 * add version 26.3.4 migration --------- Co-authored-by: Calvin Yau <calvin.yau@sentry.io>
1 parent 3e4ac41 commit 79af7f9

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.2.2
1+
26.3.4
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.27 on 2026-03-04 22:05
2+
3+
from django.db import migrations
4+
5+
6+
def update_version(apps, schema):
7+
Constants = apps.get_model("core", "Constants")
8+
version = Constants.objects.get(key="version")
9+
version.value = "26.3.4"
10+
version.save()
11+
12+
13+
class Migration(migrations.Migration):
14+
dependencies = [
15+
("core", "0082_commiterror_commit_id_idx"),
16+
]
17+
18+
operations = [migrations.RunPython(update_version)]

0 commit comments

Comments
 (0)