Skip to content

Commit

Permalink
0.5.1 fixing setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeray Diaz Diaz committed Aug 25, 2018
1 parent ccc6f91 commit ef77ad2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.5.0
## 0.5.1

- Added multilanguage support
- Improved language support
Expand Down
2 changes: 1 addition & 1 deletion docs/languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The currently supported languages are:
... ]
```

> New in 0.5.0: the `lunr` function now accepts more than one language
> New in 0.5.1: the `lunr` function now accepts more than one language
Simply define specify one or more [ISO-639-1 codes](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) for the language(s) of your documents in the `languages` parameter to the `lunr` function.

Expand Down
2 changes: 1 addition & 1 deletion lunr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

logging.basicConfig(format="%(levelname)-7s - %(message)s")

__VERSION__ = '0.5.0'
__VERSION__ = '0.5.1'
__TARGET_JS_VERSION__ = '2.3.2'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import re
from setuptools import setup
from setuptools import setup, find_packages


PATH = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -32,7 +32,7 @@ def find_version():
long_description_content_type='text/markdown',
author='Yeray Diaz Diaz',
author_email='yeraydiazdiaz@gmail.com',
packages=['lunr'],
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[
'future>=0.16.0',
Expand Down

0 comments on commit ef77ad2

Please sign in to comment.