File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
django_elastic_migrations Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
3
4
+ 0.7.8 (2018-11-13)
5
+ ^^^^^^^^^^^^^^^^^^^^^^
6
+ * fix `#7 Convert Readme to rst for pypi <https://github.com/HBS-HBX/django-elastic-migrations/issues/7 >`_
7
+ * first release on PyPI
8
+ * update project dependencies
9
+
4
10
0.7.7 (2018-09-17)
5
11
^^^^^^^^^^^^^^^^^^^^^^
6
12
* fix `#41 stack trace when indexing in py3 <https://github.com/HBS-HBX/django-elastic-migrations/issues/41 >`_
Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ Usage
100
100
Installation
101
101
~~~~~~~~~~~~
102
102
103
-
104
- #. Put a reference to this package in your ``requirements.txt `` and install the package
103
+ #. `` pip install django-elastic-migrations ``
104
+ #. Put a reference to this package in your ``requirements.txt ``
105
105
#. Ensure that a valid ``elasticsearch-dsl-py `` version is accessible, and configure
106
106
the path to your configured Elasticsearch singleton client in your django settings:
107
107
``DJANGO_ELASTIC_MIGRATIONS_ES_CLIENT = "tests.es_config.ES_CLIENT" ``.
Original file line number Diff line number Diff line change 8
8
from django_elastic_migrations .utils import loading
9
9
from django_elastic_migrations .utils .django_elastic_migrations_log import get_logger
10
10
11
- __version__ = '0.7.7 '
11
+ __version__ = '0.7.8 '
12
12
13
13
default_app_config = 'django_elastic_migrations.apps.DjangoElasticMigrationsConfig' # pylint: disable=invalid-name
14
14
You can’t perform that action at this time.
0 commit comments