Skip to content

Commit 4617ac0

Browse files
committed
Merge branch 'release/1.1.2'
2 parents 07d229a + e40dbcd commit 4617ac0

File tree

3 files changed

+56
-27
lines changed

3 files changed

+56
-27
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace = false
99

1010
[project]
1111
name = "django_crypto_fields"
12-
version = "1.1.1"
12+
version = "1.1.2"
1313
description = "Add encrypted field classes and more to your Django models"
1414
readme = {file = "README.rst", content-type = "text/x-rst"}
1515
keywords = [
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by Django 5.2.6 on 2025-09-24 04:56
2+
3+
import django_revision.revision_field
4+
from django.db import migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
(
11+
"django_crypto_fields",
12+
"0011_alter_crypt_algorithm_alter_crypt_hash_and_more",
13+
),
14+
]
15+
16+
operations = [
17+
migrations.AlterField(
18+
model_name="crypt",
19+
name="revision",
20+
field=django_revision.revision_field.RevisionField(
21+
blank=True,
22+
default="",
23+
editable=False,
24+
help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
25+
max_length=75,
26+
verbose_name="Revision",
27+
),
28+
),
29+
]

uv.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)