Skip to content

Commit 360b832

Browse files
Release 25.7.7 (#291)
* Prepare release 25.7.7 * add 25.7.7 migration * chore: update release migration identifier --------- Co-authored-by: Calvin Yau <calvin.yau@sentry.io>
1 parent 325d764 commit 360b832

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,5 @@ dmypy.json
130130

131131
*.pem
132132
junit.xml
133+
134+
.DS_Store

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.6.2
1+
25.7.7
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.21 on 2025-07-08 20:38
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 = "25.7.7"
10+
version.save()
11+
12+
13+
class Migration(migrations.Migration):
14+
dependencies = [
15+
("core", "0072_pull_pulls_pullid_desc"),
16+
]
17+
18+
operations = [migrations.RunPython(update_version)]

0 commit comments

Comments
 (0)