Skip to content

Commit 0a8561b

Browse files
committed
Version bump 0.4.1 -> 0.5.0
1 parent 5cc82e6 commit 0a8561b

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

HISTORY.rst

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

6+
0.5.0 (2017-03-17)
7+
++++++++++++++++++
8+
9+
* Replace deprecated option_list in commands with add_arguments method
10+
* Update Django versions in tox config and docs
11+
612
0.4.1 (2016-05-05)
713
++++++++++++++++++
814

README.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ elasticstack
1111
.. image:: https://pypip.in/d/elasticstack/badge.svg
1212
:target: https://crate.io/packages/elasticstack?version=latest
1313

14-
:Version: 0.4.1
14+
:Version: 0.5.0
1515
:Author: Ben Lopatin (http://benlopatin.com)
1616

1717
Configurable indexing and other extras for Haystack (with ElasticSearch
@@ -306,9 +306,8 @@ Stability, docs, and tests
306306
==========================
307307

308308
The form, view, and backend functionality in this project is considered stable.
309-
Test coverage is not substantial, but is run against Django 1.4 through Django
310-
1.6 on Python 2.6 and Python 2.7, Django 1.5 and Django 1.6 on Python 3.3, and
311-
Django 1.6 on PyPy.
309+
Test coverage is not substantial, but is run against Django 1.8 through Django
310+
1.10 on Python 2.7, 3.4, and 3.5.
312311

313312
Why not add this stuff to Haystack?
314313
-----------------------------------

elasticstack/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525

2626
__title__ = 'elasticstack'
2727
__author__ = 'Ben Lopatin'
28-
__version__ = '0.4.1'
28+
__version__ = '0.5.0'
2929

3030
default_app_config = 'elasticstack.apps.ElasticstackConfig'

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
flake8,
4-
py{27,34,35}-django{18,19}-haystack{24},
4+
py{27,34,35}-django{18,19,110}-haystack{24},
55

66
[testenv]
77
setenv =
@@ -17,7 +17,8 @@ basepython =
1717
deps =
1818
django14: Django>=1.4,<1.5
1919
django18: Django>=1.8,<1.9
20-
django19: Django==1.9a1
20+
django19: Django>=1.9,<1.10
21+
django110: Django>=1.10,<1.11
2122
haystack22: django-haystack>=2.2.0,<2.3.0
2223
haystack23: django-haystack>=2.3.0,<2.4.0
2324
haystack24: django-haystack>=2.4.0,<2.5.0

0 commit comments

Comments
 (0)