Skip to content

Commit

Permalink
Release 2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Jan 14, 2019
1 parent e3d8b3d commit 0c3923e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ Optional server extras:
$ pytest [--cov]

# Changes
2.2
* PyLucene 7.6 supported

2.1
* PyLucene >=7 required

Expand Down
2 changes: 1 addition & 1 deletion examples/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
root.indexer.set('date', engine.Field.String, stored=True, docValuesType='sorted')
root.indexer.set('text', engine.Field.Text)
# populate index
for doc in conftest.constitution():
for doc in conftest.constitution.__wrapped__():
if 'amendment' in doc:
root.indexer.add(amendment=doc['amendment'], date=doc['date'], text=doc['text'])
root.update()
Expand Down
2 changes: 1 addition & 1 deletion lupyne/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

warnings.filterwarnings('default', category=DeprecationWarning, module='lupyne')

__version__ = '2.1'
__version__ = '2.2'

0 comments on commit 0c3923e

Please sign in to comment.