Skip to content

Commit cdba1cc

Browse files
committed
bump version to 0.9
1 parent 2f028ff commit cdba1cc

File tree

4 files changed

+26
-11
lines changed

4 files changed

+26
-11
lines changed

CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Changes
22
=======
33

4+
0.9 (2016-12-08)
5+
----------------
6+
7+
* Python 2.6 support is dropped;
8+
* CRFSuite C++ library is updated to a more recent commit;
9+
* improved Windows support (thanks @fgregg);
10+
* fixed building with gcc < 5.0.0 (thanks @kantan2015);
11+
* extension is rebuilt with Cython 0.25.1; this improves PyPy compatibility
12+
(but we're not quite there yet).
13+
* docs: trainer.logparser example is added to the notebook (thanks @samgalen).
14+
415
0.8.4 (2015-11-25)
516
------------------
617

README.rst

+10-6
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,17 @@ Please don't commit generated cpp files in the same commit as other files.
5454
.. _Cython: http://cython.org/
5555
.. _tox: http://tox.testrun.org
5656

57-
Authors
58-
=======
57+
Authors and Contributors
58+
========================
5959

60-
* Terry Peng <pengtaoo@gmail.com>
61-
* Mikhail Korobov <kmike84@gmail.com>
60+
Original authors are Terry Peng <pengtaoo@gmail.com> and
61+
Mikhail Korobov <kmike84@gmail.com>. Many other people contributed;
62+
some of them can be found at github Contributors_ page.
6263

6364
Bundled CRFSuite_ C/C++ library is by Naoaki Okazaki & contributors.
6465

66+
.. _Contributors: https://github.com/tpeng/python-crfsuite/graphs/contributors
67+
6568
License
6669
=======
6770

@@ -73,10 +76,11 @@ CRFsuite_ library is licensed under BSD license.
7376
Alternatives
7477
============
7578

76-
* https://github.com/jakevdp/pyCRFsuite - uses C API instead of C++ API;
77-
allows to use scipy sparse matrices as an input.
7879
* https://github.com/chokkan/crfsuite/tree/master/swig/python - official
7980
Python wrapper, exposes C++ API using SWIG.
81+
* https://github.com/jakevdp/pyCRFsuite - uses C API instead of C++ API;
82+
allows to use scipy sparse matrices as an input. At the time of writing
83+
it is unmaintained.
8084

8185
This package (python-crfsuite) wraps CRFsuite C++ API using Cython.
8286
It is faster than official SWIG wrapper and has a simpler codebase than

docs/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@
4949

5050
# General information about the project.
5151
project = u'python-crfsuite'
52-
copyright = u'2015, Terry Peng, Mikhail Korobov'
52+
copyright = u'2016, Terry Peng, Mikhail Korobov'
5353

5454
# The version info for the project you're documenting, acts as replacement for
5555
# |version| and |release|, also used in various other places throughout the
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '0.8'
59+
version = '0.9'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '0.8.4'
61+
release = '0.9'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.
@@ -246,7 +246,7 @@
246246
# dir menu entry, description, category)
247247
texinfo_documents = [
248248
('index', 'python-crfsuite', u'python-crfsuite Documentation',
249-
u'Terry Peng, Mikhail Korobov', 'python-crfsuite', 'One line description of project.',
249+
u'Terry Peng, Mikhail Korobov', 'python-crfsuite', 'Python CRFSuite wrapper.',
250250
'Miscellaneous'),
251251
]
252252

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def build_extensions(self):
4545

4646
setup(
4747
name='python-crfsuite',
48-
version="0.8.4",
48+
version="0.9",
4949
description="Python binding for CRFsuite",
5050
long_description=open('README.rst').read(),
5151
author="Terry Peng, Mikhail Korobov",

0 commit comments

Comments
 (0)