Skip to content

Commit

Permalink
v3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram Vanroy authored and Bram Vanroy committed Jul 12, 2021
1 parent dec979d commit 670d002
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
7 changes: 4 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
History
#######

*********
3.0.0 TBD
*********
***********************
3.0.0 (July 12th, 2021)
***********************
* **[general]** Breaking change: spaCy v3 required (closes `#8`_)
* **[init_parser]** Breaking change: in all cases, :code:`is_tokenized` now disables sentence segmentation
* **[init_parser]** Breaking change: no more default values for parser or model anywhere. Important to note here that
spaCy does not work with short-hand codes such as ``en`` any more. You have to provide the full model name, e.g.
``en_core_web_sm``
* **[init_parser]** Improvement: models are automatically downloaded for Stanza and UDPipe
* **[cli]** Reworked the position of the CLI script in the directory structure as well as the arguments. Run
:code:`parse-as-conll -h` for more information.
* **[conllparser]** Made the `ConllParser`_ class available as a utility to easily create a wrapper for a spaCy-like
Expand Down
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
Parsing to CoNLL with spaCy, spacy-stanza, and spacy-udpipe
===========================================================

**This is a pre-release for the upcoming v3 of the library. If you experience any problems with it, please open a new**
`issue`_

**The last version to support spaCy v2 can be found** `here`_

This module allows you to parse text into `CoNLL-U format`_. You can use it as a command line tool, or embed it in your
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="spacy_conll",
version="3.0.0-rc3",
version="3.0.0",
description="A custom pipeline component for spaCy that can convert any parsed Doc"
" and its sentences into CoNLL-U format. Also provides a command line entry point.",
long_description=Path("README.rst").read_text(encoding="utf-8"),
Expand Down
2 changes: 1 addition & 1 deletion spacy_conll/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.0-rc3"
__version__ = "3.0.0"

from .formatter import ConllFormatter
from .utils import init_parser

0 comments on commit 670d002

Please sign in to comment.