Skip to content

Commit 670d002

Browse files
Bram VanroyBram Vanroy
authored andcommitted
v3.0.0 release
1 parent dec979d commit 670d002

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

HISTORY.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
History
33
#######
44

5-
*********
6-
3.0.0 TBD
7-
*********
5+
***********************
6+
3.0.0 (July 12th, 2021)
7+
***********************
88
* **[general]** Breaking change: spaCy v3 required (closes `#8`_)
99
* **[init_parser]** Breaking change: in all cases, :code:`is_tokenized` now disables sentence segmentation
1010
* **[init_parser]** Breaking change: no more default values for parser or model anywhere. Important to note here that
1111
spaCy does not work with short-hand codes such as ``en`` any more. You have to provide the full model name, e.g.
1212
``en_core_web_sm``
13+
* **[init_parser]** Improvement: models are automatically downloaded for Stanza and UDPipe
1314
* **[cli]** Reworked the position of the CLI script in the directory structure as well as the arguments. Run
1415
:code:`parse-as-conll -h` for more information.
1516
* **[conllparser]** Made the `ConllParser`_ class available as a utility to easily create a wrapper for a spaCy-like

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
Parsing to CoNLL with spaCy, spacy-stanza, and spacy-udpipe
33
===========================================================
44

5-
**This is a pre-release for the upcoming v3 of the library. If you experience any problems with it, please open a new**
6-
`issue`_
7-
85
**The last version to support spaCy v2 can be found** `here`_
96

107
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="spacy_conll",
14-
version="3.0.0-rc3",
14+
version="3.0.0",
1515
description="A custom pipeline component for spaCy that can convert any parsed Doc"
1616
" and its sentences into CoNLL-U format. Also provides a command line entry point.",
1717
long_description=Path("README.rst").read_text(encoding="utf-8"),

spacy_conll/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.0-rc3"
1+
__version__ = "3.0.0"
22

33
from .formatter import ConllFormatter
44
from .utils import init_parser

0 commit comments

Comments
 (0)