Skip to content

Commit

Permalink
Preparations for release of version 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
J535D165 committed Dec 1, 2019
1 parent 47a0383 commit 683d5ad
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ The Python Record linkage Toolkit requires Python 3.5 or higher (since version
Python 2.7 users can use version <= 0.13, but it is advised to use Python >=
3.5.

The toolkit depends on Pandas_ (>=18.0), Numpy_, `Scikit-learn`_, Scipy_ and
The toolkit depends on Pandas_ (>=23.0), Numpy_, `Scikit-learn`_, Scipy_ and
Jellyfish_. You probably have most of them already installed. The package
``jellyfish`` is used for approximate string comparing and string encoding.
The package Numexpr_ is an optional dependency to speed up numerical
Expand Down
24 changes: 20 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,29 @@ Release notes
Version 0.14.0
==============

- Drop Python 2.7 and Python 3.4 support (`#91`_).
- Simplify the use of all cpus in parallel mode (`#102`_)
- Drop Python 2.7 and Python 3.4 support. (`#91`_)
- Upgrade minimal pandas version to 0.23.
- Simplify the use of all cpus in parallel mode. (`#102`_)
- Store large example datasets in user home folder or use environment
variable. Before, example datasets were stored in the package (see
issue `#42`_) (`#92`_).
variable. Before, example datasets were stored in the package. (see
issue `#42`_) (`#92`_)
- Add support to write and read annotation files for recordlinkage ANNOTATOR.
See the docs and https://github.com/J535D165/recordlinkage-annotator for
more information.
- Replace `.labels` by `.codes` for `pandas.MultiIndex` objects for newer
versions of pandas (>0.24). (`#103`_)
- Fix totals for pandas.MultiIndex input on confusion matrix and accuracy
metrics. (see issue `#84`_) (`#109`_)
- Initialize Compare with (a list of) features (Bug). (`#124`_)
- Various updates in relation to deprecation warnings in third-party
libraries such as sklearn, pandas and networkx.

.. _#42: https://github.com/J535D165/recordlinkage/issues/42
.. _#84: https://github.com/J535D165/recordlinkage/issues/84

.. _#91: https://github.com/J535D165/recordlinkage/pull/91
.. _#92: https://github.com/J535D165/recordlinkage/pull/92
.. _#102: https://github.com/J535D165/recordlinkage/pull/102
.. _#103: https://github.com/J535D165/recordlinkage/pull/103
.. _#109: https://github.com/J535D165/recordlinkage/pull/109
.. _#124: https://github.com/J535D165/recordlinkage/pull/124
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# built documents.
#
# The short X.Y version.
version = '0.12' # rl_version.split('+')[0]
version = '0.14' # rl_version.split('+')[0]
# The full version, including alpha/beta/rc tags.
release = '0.12' # rl_version.split('+')[0]
release = '0.14' # rl_version.split('+')[0]

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 683d5ad

Please sign in to comment.