Fix version and typo

This commit is contained in:
frgmt 2025-02-21 12:00:53 +09:00
parent df0df57b69
commit 12fa329181
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ SECRET_KEY_FALLBACKS = ["old-key"]
If you wish to update the existing encrypted records simply load and re-save the models to use the new key.
```python
for obj in MuModel.objects.all():
for obj in MyModel.objects.all():
obj.save()
```

View file

@ -10,7 +10,7 @@ setup(
author="jazzband",
author_email="n.anahara@fragment.co.jp",
packages=["encrypted_fields"],
version="0.2.0",
version="0.3.0",
install_requires=[
"Django>=3.2",
"cryptography>=35.0.0",