Skip to content

Commit

Permalink
Updates for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcc committed Aug 2, 2015
1 parent 6ef9a6e commit 8125c03
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
7 changes: 4 additions & 3 deletions CONTRIBUTING.rst
Expand Up @@ -23,9 +23,10 @@ Submitting changes

- Make your changes (please include an update to ``CONTRIBUTORS.rst``)

- Test your changes with ``flake8 StanfordDependencies`` and
``nosetests`` (you will need to install ``flake8``, ``JPype1``,
``nose``, ``graphviz``, and ``asciitree`` packages via pip).
- Test your code's formatting with ``flake8 StanfordDependencies`` and
output with ``nosetests`` (you will need to install ``flake8``,
``JPype1``, ``nose``, ``graphviz``, and ``asciitree`` packages via
pip). You'll need some implementation of Java 1.8 to run the tests.
Changes should be tested with Python 2.7 and Python 3.4 (both will be
tested with Travis CI (see below) if you don't want to create multiple
environments). More information is available in the `release checklist
Expand Down
13 changes: 12 additions & 1 deletion README.rst
Expand Up @@ -107,6 +107,15 @@ By default, PyStanfordDependencies will attempt to use the ``jpype``
backend. If ``jpype`` isn't available or crashes on startup,
PyStanfordDependencies will fallback to ``subprocess`` with a warning.

Universal Dependencies status
-----------------------------
PyStanfordDependencies mostly supports `Universal Dependencies
<http://universaldependencies.github.io/docs/>`_ (see `issue #10
<https://github.com/dmcc/PyStanfordDependencies/issues/10>`_ for the
most up to date status). PyStanfordDependencies output matches Universal
Dependencies in terms of structure and dependency labels, but Universal
POS tags and features are missing.

More information
----------------
Licensed under `Apache 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.
Expand All @@ -119,13 +128,15 @@ Bug reports and feature requests: `GitHub issue tracker

Release summaries
-----------------
- 0.2.0 (2015.08.02): Universal Dependencies support (mostly),
Python 3 support (fully), minor API updates
- 0.1.7 (2015.06.13): Bugfixes for JPype, support for IBM Java
- 0.1.6 (2015.02.12): Support for graphviz formatting, CoreNLP 3.5.1,
better Windows portability
- 0.1.5 (2015.01.10): Support for ASCII tree formatting
- 0.1.4 (2015.01.07): Fix CCprocessed support
- 0.1.3 (2015.01.03): Bugfixes, coveralls integration, refactoring
- 0.1.2 (2015.01.02): Better CoNLL structures, test suite and Travis-CI
- 0.1.2 (2015.01.02): Better CoNLL structures, test suite and Travis CI
support, bugfixes
- 0.1.1 (2014.12.15): More docs, fewer bugs
- 0.1 (2014.12.14): Initial version
15 changes: 13 additions & 2 deletions StanfordDependencies/__init__.py
Expand Up @@ -112,6 +112,15 @@
backend. If ``jpype`` isn't available or crashes on startup,
PyStanfordDependencies will fallback to ``subprocess`` with a warning.
Universal Dependencies status
-----------------------------
PyStanfordDependencies mostly supports `Universal Dependencies
<http://universaldependencies.github.io/docs/>`_ (see `issue #10
<https://github.com/dmcc/PyStanfordDependencies/issues/10>`_ for the
most up to date status). PyStanfordDependencies output matches Universal
Dependencies in terms of structure and dependency labels, but Universal
POS tags and features are missing.
More information
----------------
Licensed under `Apache 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.
Expand All @@ -124,13 +133,15 @@
Release summaries
-----------------
- 0.2.0 (2015.08.02): Universal Dependencies support (mostly),
Python 3 support (fully), minor API updates
- 0.1.7 (2015.06.13): Bugfixes for JPype, support for IBM Java
- 0.1.6 (2015.02.12): Support for graphviz formatting, CoreNLP 3.5.1,
better Windows portability
- 0.1.5 (2015.01.10): Support for ASCII tree formatting
- 0.1.4 (2015.01.07): Fix CCprocessed support
- 0.1.3 (2015.01.03): Bugfixes, coveralls integration, refactoring
- 0.1.2 (2015.01.02): Better CoNLL structures, test suite and Travis-CI
- 0.1.2 (2015.01.02): Better CoNLL structures, test suite and Travis CI
support, bugfixes
- 0.1.1 (2014.12.15): More docs, fewer bugs
- 0.1 (2014.12.14): Initial version
Expand All @@ -144,5 +155,5 @@

__authors__ = 'David McClosky'
__license__ = 'Apache 2.0'
__version__ = '0.1.7'
__version__ = '0.2.0'
__email__ = 'notsoweird+pystanforddependencies@gmail.com'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='PyStanfordDependencies',
version='0.1.7',
version='0.2.0',
description='Python interface for converting Penn Treebank trees to '
'Stanford Dependencies',
long_description=open('README.rst').read(),
Expand Down

0 comments on commit 8125c03

Please sign in to comment.