From 12fa32918165b0abaa54f0cad0f002efebe6da4d Mon Sep 17 00:00:00 2001 From: frgmt Date: Fri, 21 Feb 2025 12:00:53 +0900 Subject: [PATCH] Fix version and typo --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daf1f81..a213315 100644 --- a/README.md +++ b/README.md @@ -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() ``` diff --git a/setup.py b/setup.py index 74190ba..92abdf2 100644 --- a/setup.py +++ b/setup.py @@ -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",