Skip to content

Commit

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

* Add version migration

---------

Co-authored-by: Codecov Release <noreply@github.com>
Co-authored-by: Scott Nelson <scott@codecov.io>
Co-authored-by: Trent Schmidt <trent@codecov.io>
  • Loading branch information
4 people committed Nov 3, 2023
1 parent 206e7ef commit 4b7d96e
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.10.2
23.11.2
19 changes: 19 additions & 0 deletions core/migrations/0038_increment_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.3 on 2023-11-03 13:24

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.11.2"
version.save()


class Migration(migrations.Migration):

dependencies = [
("core", "0037_alter_commitnotification_decoration_type"),
]

operations = [migrations.RunPython(update_version)]

0 comments on commit 4b7d96e

Please sign in to comment.