Skip to content

Commit

Permalink
Merge branch 'release/0.3.9' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Dec 2, 2023
2 parents b22a532 + 75a24e3 commit e76ffd7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
CHANGES

0.3.9
-----
- add minor migration to add locale fields thru django-audit-fields

0.3.8
-----
- drop support for python < 3.11
- add minor migration triggered by django-audit-fields

0.3.7
-----
- minor: util to get list of encrypted field classes from a model or instance
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 4.2.7 on 2023-12-01 14:47

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("django_crypto_fields", "0004_alter_crypt_device_created_and_more"),
]

operations = [
migrations.AddField(
model_name="crypt",
name="locale_created",
field=models.CharField(
blank=True,
help_text="Auto-updated by Modeladmin",
max_length=10,
null=True,
verbose_name="Locale created",
),
),
migrations.AddField(
model_name="crypt",
name="locale_modified",
field=models.CharField(
blank=True,
help_text="Auto-updated by Modeladmin",
max_length=10,
null=True,
verbose_name="Locale modified",
),
),
]

0 comments on commit e76ffd7

Please sign in to comment.