From 7bceb6fc5fb1006a780bcdcea687ba04fe1ba8c1 Mon Sep 17 00:00:00 2001 From: lintool Date: Sat, 25 Jan 2020 17:28:03 -0500 Subject: [PATCH] Release 0.7.2.0 --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 608055ca8..fbcd90939 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A low-effort way to try out Pyserini is to look at our [online notebooks](https: For convenience, we've pre-built a few common indexes, available to download [here](https://git.uwaterloo.ca/jimmylin/anserini-indexes). Pyserini versions adopt the convention of _X.Y.Z.W_, where _X.Y.Z_ tracks the version of Anserini, and _W_ is used to distinguish different releases on the Python end. -The current stable release of Pyserini is [v0.7.1.0](https://pypi.org/project/pyserini/) on PyPI. +The current stable release of Pyserini is [v0.7.2.0](https://pypi.org/project/pyserini/) on PyPI. The current experimental release of Pyserini on TestPyPI is behind the current stable release (i.e., do not use). In general, documentation is kept up to date with the latest code in the repo. diff --git a/setup.py b/setup.py index adac04db6..6ff54d78f 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ setuptools.setup( name="pyserini", - version="0.7.1.0", + version="0.7.2.0", author="Jimmy Lin", author_email="jimmylin@uwaterloo.ca", description="Python interface to the Anserini IR toolkit built on Lucene", long_description=long_description, long_description_content_type="text/markdown", package_data={"pyserini": [ - "resources/jars/anserini-0.7.1-fatjar.jar", + "resources/jars/anserini-0.7.2-fatjar.jar", ]}, url="https://github.com/castorini/pyserini", install_requires=['Cython', 'pyjnius'],