diff --git a/docs/changelog.rst b/docs/changelog.rst index d9de6685..612f5c72 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,7 +11,10 @@ latest changes in development for next release .. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE! +1.0.0 +----- +* **major update to process Filth in parallel** (`#11`_) 0.1.0 ----- @@ -41,7 +44,7 @@ latest changes in development for next release .. list of contributors that are linked to above. putting links here to make the text above relatively clean -.. _@datascopeanalytics: https://github.com/datascopeanalytics +.. _@deanmalmgren: https://github.com/deanmalmgren .. list of issues that have been resolved. putting links here to make @@ -54,3 +57,4 @@ latest changes in development for next release .. _#8: https://github.com/datascopeanalytics/scrubadub/issues/8 .. _#9: https://github.com/datascopeanalytics/scrubadub/issues/9 .. _#10: https://github.com/datascopeanalytics/scrubadub/issues/10 +.. _#11: https://github.com/datascopeanalytics/scrubadub/issues/11 diff --git a/scrubadub/__init__.py b/scrubadub/__init__.py index 956c7eae..27d0f2f5 100644 --- a/scrubadub/__init__.py +++ b/scrubadub/__init__.py @@ -4,7 +4,7 @@ from . import filth from . import detectors -__version__ = VERSION = "0.1.0" +__version__ = VERSION = "1.0.0" def clean(text, cls=None, **kwargs):