Skip to content

Commit

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

* Add migration to increment version

---------

Co-authored-by: Scott Nelson <scott@codecov.io>
  • Loading branch information
codecov-releaser and scott-codecov committed Dec 4, 2023
1 parent cdc1c9b commit df44b4b
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 @@
23.11.2
23.12.4
19 changes: 19 additions & 0 deletions core/migrations/0040_increment_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.7 on 2023-12-04 21:13

from django.db import migrations


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


class Migration(migrations.Migration):

dependencies = [
("core", "0039_pull_pulls_repoid_id"),
]

operations = [migrations.RunPython(update_version)]

0 comments on commit df44b4b

Please sign in to comment.