diff --git a/README.md b/README.md index c2f6c0130..3a6ba1aad 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,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.10.0.0](https://pypi.org/project/pyserini/) on PyPI. +The current stable release of Pyserini is [v0.10.0.1](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. @@ -23,7 +23,7 @@ If you're looking to work with the [COVID-19 Open Research Dataset (CORD-19)](ht Install via PyPI: ``` -pip install pyserini==0.10.0.0 +pip install pyserini==0.10.0.1 ``` ## Development Installation diff --git a/setup.py b/setup.py index 581e14e75..d349040a6 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pyserini", - version="0.10.0.0", + version="0.10.0.1", author="Jimmy Lin", author_email="jimmylin@uwaterloo.ca", description="Python interface to the Anserini IR toolkit built on Lucene",