diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 932978d..7b33eba 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,12 @@ Releases master ~~~~~~ +* ... + + +0.3 +~~~ + * Updated bulk_update method to use Django's built-in method if available * Changed default ``max_size`` for ``fake_email`` to ``40`` * Fixed error in ``fake_text`` when ``max_size`` is too short diff --git a/anon/__init__.py b/anon/__init__.py index 28c6f1f..797e5b5 100644 --- a/anon/__init__.py +++ b/anon/__init__.py @@ -2,7 +2,7 @@ import sys -__version__ = "0.2" +__version__ = "0.3" try: from .base import BaseAnonymizer, lazy_attribute # noqa: F401