Skip to content

Commit

Permalink
Release 0.7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lintool committed Dec 13, 2019
1 parent aae9d7d commit 51ee07b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pyserini: Anserini Integration with Python

[![Generic badge](https://img.shields.io/badge/Lucene-v8.0.0-brightgreen.svg)](https://archive.apache.org/dist/lucene/java/8.0.0/)
[![Generic badge](https://img.shields.io/badge/Lucene-v8.3.0-brightgreen.svg)](https://archive.apache.org/dist/lucene/java/8.3.0/)
[![Maven Central](https://img.shields.io/maven-central/v/io.anserini/anserini?color=brightgreen)](https://search.maven.org/search?q=a:anserini)
[![PyPI](https://img.shields.io/pypi/v/pyserini?color=brightgreen)](https://pypi.org/project/pyserini/)
[![LICENSE](https://img.shields.io/badge/license-Apache-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
Expand All @@ -11,8 +11,8 @@ 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.6.0.0](https://pypi.org/project/pyserini/) on PyPI.
The current experimental release of Pyserini is [v0.6.1.post1](https://test.pypi.org/project/pyserini/0.6.1.post1/) on TestPyPI, based on a fatjar built from commit `c4f351` in Anserini, dated Dec 1, 2019.
The current stable release of Pyserini is [v0.7.0.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.

## Installation
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

setuptools.setup(
name="pyserini",
version="0.6.1-1",
version="0.7.0.0",
author="Jimmy Lin",
author_email="[email protected]",
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.6.1-SNAPSHOT-fatjar.jar",
"resources/jars/anserini-0.7.0-fatjar.jar",
]},
url="https://github.com/castorini/pyserini",
install_requires=['Cython', 'pyjnius'],
Expand Down

0 comments on commit 51ee07b

Please sign in to comment.