From 8a7bbd58504f77735354534238f06ab3cc63b400 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 9 Jul 2015 12:12:29 +0200 Subject: [PATCH] * Announce v0.88 --- docs/source/index.rst | 2 +- docs/source/updates.rst | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index fe15b9eb4..8aa457595 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -10,7 +10,7 @@ spaCy: Industrial-strength NLP .. _Issue Tracker: https://github.com/honnibal/spaCy/issues -**2015-07-01**: `Version 0.87 released`_ +**2015-07-08**: `Version 0.88 released`_ .. _Version 0.87 released: updates.html diff --git a/docs/source/updates.rst b/docs/source/updates.rst index c21b9c984..871b059ee 100644 --- a/docs/source/updates.rst +++ b/docs/source/updates.rst @@ -10,6 +10,24 @@ To update your installation: Most updates ship a new model, so you will usually have to redownload the data. +2015-07-08 v0.88 +---------------- + +Refactoring release. + +If you have the data for v0.87, you don't need to redownload the data for this +release. + +* You can now set tag=False, parse=False or entity=False when creating the pipleine, + to disable some of the models. See the documentation for details. +* Models no longer lazy-loaded. +* Warning emitted when parse=True or entity=True but model not loaded. +* Rename the tokens.Tokens class to tokens.Doc. An alias has been made to assist + backwards compatibility, but you should update your code to refer to the new + class name. +* Various bits of internal refactoring + + 2015-07-01 v0.87 ----------------