We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d005280 commit e38e122Copy full SHA for e38e122
VERSION
@@ -1 +1 @@
1
-26.3.4
+26.4.1
libs/shared/shared/django_apps/core/migrations/0084_increment_version.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.2.27 on 2026-04-01 19:44
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.4.1"
10
+ version.save()
11
12
13
+class Migration(migrations.Migration):
14
+ dependencies = [
15
+ ("core", "0083_increment_version"),
16
+ ]
17
18
+ operations = [migrations.RunPython(update_version)]
0 commit comments