diff --git a/docs/changelog.rst b/docs/changelog.rst index 5a181582..fb10d3b1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,10 +11,17 @@ latest changes in development for next release .. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE! +1.1.0 +----- + * regular expression detection of Social Security Numbers (`#17`_) * Added functionality to keep ``replace_with = "identifier"`` (`#21`_) +* several bug fixes, including: + + * inaccurate name detection (`#19`_) + 1.0.3 ----- @@ -77,4 +84,5 @@ latest changes in development for next release .. _#12: https://github.com/datascopeanalytics/scrubadub/issues/12 .. _#13: https://github.com/datascopeanalytics/scrubadub/issues/13 .. _#17: https://github.com/datascopeanalytics/scrubadub/issues/17 +.. _#19: https://github.com/datascopeanalytics/scrubadub/issues/19 .. _#21: https://github.com/datascopeanalytics/scrubadub/issues/21 diff --git a/scrubadub/__init__.py b/scrubadub/__init__.py index 9727734a..68c08320 100644 --- a/scrubadub/__init__.py +++ b/scrubadub/__init__.py @@ -4,7 +4,7 @@ from . import filth from . import detectors -__version__ = VERSION = "1.0.3" +__version__ = VERSION = "1.1.0" def clean(text, cls=None, **kwargs):