Skip to content

Commit c773258

Browse files
authored
Update README.rst
1 parent fa65c6b commit c773258

File tree

1 file changed

+40
-3
lines changed

1 file changed

+40
-3
lines changed

README.rst

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Cython. spaCy is built on the very latest research, but it isn't researchware.
66
It was designed from day 1 to be used in real products. It's commercial
77
open-source software, released under the MIT license.
88

9-
💫 **Version 1.3 out now!** `Read the release notes here. <https://github.com/explosion/spaCy/releases/>`_
9+
💫 **Version 1.4 out now!** `Read the release notes here. <https://github.com/explosion/spaCy/releases/>`_
1010

1111
.. image:: http://i.imgur.com/wFvLZyJ.png
1212
:target: https://travis-ci.org/explosion/spaCy
@@ -241,8 +241,45 @@ calling ``spacy.load()``, or by passing a ``path`` argument to the ``spacy.en.En
241241
Changelog
242242
=========
243243

244-
2016-12-03 `v1.3.0 <https://github.com/explosion/spaCy/releases>`_: *Improve API consistency*
245-
---------------------------------------------------------------------------------------------
244+
2016-12-18 `v1.4.0 <https://github.com/explosion/spaCy/releases>`_: *Improved language data and alpha Dutch support*
245+
--------------------------------------------------------------------------------------------------------------------
246+
247+
**✨ Major features and improvements**
248+
249+
* **NEW:** Alpha support for Dutch tokenization.
250+
* Reorganise and improve format for language data.
251+
* Add shared tag map, entity rules, emoticons and punctuation to language data.
252+
* Convert entity rules, morphological rules and lemmatization rules from JSON to Python.
253+
* Update language data for English, German, Spanish, French, Italian and Portuguese.
254+
255+
**🔴 Bug fixes**
256+
257+
* Fix issue `#649 <https://github.com/explosion/spaCy/issues/649>`_: Update and reorganise stop lists.
258+
* Fix issue `#672 <https://github.com/explosion/spaCy/issues/672>`_: Make ``token.ent_iob_`` return unicode.
259+
* Fix issue `#674 <https://github.com/explosion/spaCy/issues/674>`_: Add missing lemmas for contracted forms of "be" to ``TOKENIZER_EXCEPTIONS``.
260+
* Fix issue `#683 <https://github.com/explosion/spaCy/issues/683>`_ ``Morphology`` class now supplies tag map value for the special space tag if it's missing.
261+
* Fix issue `#684 <https://github.com/explosion/spaCy/issues/684>`_: Ensure ``spacy.en.English()`` loads the Glove vector data if available. Previously was inconsistent with behaviour of ``spacy.load('en')``.
262+
* Fix issue `#685 <https://github.com/explosion/spaCy/issues/685>`_: Expand ``TOKENIZER_EXCEPTIONS`` with unicode apostrophe (````).
263+
* Fix issue `#689 <https://github.com/explosion/spaCy/issues/689>`_: Correct typo in ``STOP_WORDS``.
264+
* Fix issue `#691 <https://github.com/explosion/spaCy/issues/691>`_: Add tokenizer exceptions for "gonna" and "Gonna".
265+
266+
**⚠️ Backwards incompatibilities**
267+
268+
No changes to the public, documented API, but the previously undocumented language data and model initialisation processes have been refactored and reorganised. If you were relying on the ``bin/init_model.py`` script, see the new `spaCy Developer Resources <https://github.com/explosion/spacy-dev-resources>`_ repo. Code that references internals of the ``spacy.en`` or ``spacy.de`` packages should also be reviewed before updating to this version.
269+
270+
**📖 Documentation and examples**
271+
272+
* **NEW:** `"Adding languages" <https://spacy.io/docs/usage/adding-languages>`_ workflow.
273+
* **NEW:** `"Part-of-speech tagging" <https://spacy.io/docs/usage/pos-tagging>`_ workflow.
274+
* **NEW:** `spaCy Developer Resources <https://github.com/explosion/spacy-dev-resources>`_ repo – scripts, tools and resources for developing spaCy.
275+
* Fix various typos and inconsistencies.
276+
277+
**👥 Contributors**
278+
279+
Thanks to `@dafnevk <https://github.com/dafnevk>`_, `@jvdzwaan <https://github.com/jvdzwaan>`_, `@RvanNieuwpoort <https://github.com/RvanNieuwpoort>`_, `@wrvhage <https://github.com/wrvhage>`_, `@jaspb <https://github.com/jaspb>`_, `@savvopoulos <https://github.com/savvopoulos>`_ and `@davedwards <https://github.com/davedwards>`_ for the pull requests!
280+
281+
2016-12-03 `v1.3.0 <https://github.com/explosion/spaCy/releases/tag/v1.3.0>`_: *Improve API consistency*
282+
--------------------------------------------------------------------------------------------------------
246283

247284
**✨ API improvements**
248285

0 commit comments

Comments
 (0)