Skip to content

Commit

Permalink
increment version (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
nora-codecov authored Mar 3, 2025
1 parent a9e7453 commit 4755e7f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions shared/django_apps/core/migrations/0067_increment_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2025-03-03 18:41

from django.db import migrations


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


class Migration(migrations.Migration):
dependencies = [
("core", "0066_increment_version"),
]

operations = [migrations.RunPython(update_version)]

0 comments on commit 4755e7f

Please sign in to comment.