Merge pull request #25 from frgmt/main

Fix version and typo
This commit is contained in:
fragment 2025-02-25 12:03:19 +09:00 committed by GitHub
commit aa6ebe2cb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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",