Skip to content

Commit

Permalink
Version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Jan 8, 2017
1 parent 8b5ef1f commit 0d1be42
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions Changelog.rst
Expand Up @@ -3,16 +3,17 @@
Changelog
=========

5.1.0 (dev)
-----------
5.1.0 (2017-01-08)
------------------
* Renamed ``Result`` and ``ResultMeta`` to ``Hit`` and ``HitMeta`` respectively
* ``Response`` now stores ``Search`` which it gets as first arg to ``__init__``
* aggregation results are now wrapped in classes and properly deserialized
* ``Date`` fields now allow for numerical timestamps in the java format (in millis)
* Added API documentation
* replaced generated classes with manually created

5.0.0 (2016-11-04)
------------------

Version compatible with elasticsearch 5.0.

Breaking changes:
Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Expand Up @@ -50,10 +50,11 @@
# built documents.
#

import elasticsearch_dsl
# The short X.Y version.
version = '5.0.0'
version = elasticsearch_dsl.__versionstr__
# The full version, including alpha/beta/rc tags.
release = '5.0.0'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Expand Up @@ -9,6 +9,6 @@
from .analysis import analyzer, token_filter, char_filter, tokenizer
from .faceted_search import *

VERSION = (5, 0, 0)
VERSION = (5, 1, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from os.path import join, dirname
from setuptools import setup, find_packages

VERSION = (5, 0, 0)
VERSION = (5, 1, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit 0d1be42

Please sign in to comment.