From 103dd7e248ace0f3db1ef130e7f490f81a6c89df Mon Sep 17 00:00:00 2001 From: Burton DeWilde Date: Mon, 13 May 2019 08:47:31 -0500 Subject: [PATCH] Update changelog and bump version, 0.6.3 => 0.7.0 --- CHANGELOG.rst | 7 ++----- textacy/about.py | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e7e34acbe..c5dc3b008 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -0.7.0 (in development) ----------------------- +0.7.0 (2019-05-13) +------------------ New and Changed: @@ -20,7 +20,6 @@ New and Changed: - **New:** Added functions for setting, getting, and removing these extensions. Note that they are set automatically when textacy is imported. - - **Simplified and improved performance of ``textacy.Corpus``** - Documents are now added through a simpler API, either in ``Corpus.__init__`` @@ -30,7 +29,6 @@ New and Changed: - Saving / loading corpus data to disk is now more efficient and robust. - Note: ``Corpus`` is now a collection of spaCy ``Doc`` s rather than ``textacy.Doc`` s. - - **Simplified, standardized, and added ``Dataset`` functionality** - **New:** Added an ``IMDB`` dataset, built on the classic 2011 dataset @@ -53,7 +51,6 @@ New and Changed: - Common functionality (such as validating filter values) is now standardized and consolidated in the ``datasets.utils`` module. - - **Quality of life improvements** - Reduced load time for ``import textacy`` from ~2-3 seconds to ~1 second, diff --git a/textacy/about.py b/textacy/about.py index 140cf3c37..287ab36b7 100644 --- a/textacy/about.py +++ b/textacy/about.py @@ -1,5 +1,5 @@ __title__ = "textacy" -__version__ = "0.6.3" +__version__ = "0.7.0" __description__ = "NLP, before and after spaCy" __url__ = "https://github.com/chartbeat-labs/textacy" __download_url__ = "https://pypi.org/project/textacy"