Skip to content

Commit b7a0125

Browse files
committed
Bump version: 0.5.0 → 0.5.1
1 parent c1b6aa6 commit b7a0125

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

HISTORY.rst

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
History
44
-------
55

6+
0.5.1 (2018-11-07)
7+
~~~~~~~~~~~~~~~~~~
8+
* Limit elastsearch-dsl to supported versions
9+
610
0.5.0 (2018-04-22)
711
~~~~~~~~~~~~~~~~~~
812
* Add Support for Elasticsearch 6 thanks to HansAdema

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ docs: ## generate Sphinx HTML documentation, including API docs
5050
$(MAKE) -C docs html
5151
$(BROWSER) docs/_build/html/index.html
5252

53-
release: clean ## package and upload a release
54-
python setup.py sdist upload
55-
python setup.py bdist_wheel upload
53+
release: dist ## package and upload a release
54+
twine upload dist/*
5655

57-
sdist: clean ## package
56+
dist: clean ## builds source and wheel package
5857
python setup.py sdist
58+
python setup.py bdist_wheel
5959
ls -l dist

django_elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .indices import Index # noqa
55
from .fields import * # noqa
66

7-
__version__ = '0.5.0'
7+
__version__ = '0.5.1'
88

99

1010
def autodiscover():

requirements_dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ bumpversion==0.5.3
22
wheel==0.32.2
33
django>=2.0,<2.2
44
elasticsearch-dsl>=2.1.0,<6.2.0
5+
twine
56
-e .

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
commit = True
44
tag = True
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
except ImportError:
99
from distutils.core import setup
1010

11-
version = '0.5.0'
11+
version = '0.5.1'
1212

1313
if sys.argv[-1] == 'publish':
1414
try:

0 commit comments

Comments
 (0)