Skip to content

Commit

Permalink
Bring changelog up to date. Bump version to 0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose committed Mar 20, 2013
1 parent 81c0449 commit 99cbb43
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/source/changelog.rst
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog Changelog
========= =========


v0.5 (unreleased)
-----------------

* Add ``multi_get`` support.
* Remove the internal, undocumented ``from_python`` method. django-haystack
users will need to upgrade to a newer version that avoids using it.
* Refactor JSON encoding machinery. Now it's clearer how to customize it: just
plug your custom JSON encoder class into ``ElasticSearch.json_encoder``.


v0.4 (2013-03-19) v0.4 (2013-03-19)
----------------- -----------------


Expand Down
2 changes: 1 addition & 1 deletion pyelasticsearch/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
__all__ = ['ElasticSearch', 'ElasticHttpError', 'InvalidJsonResponseError', __all__ = ['ElasticSearch', 'ElasticHttpError', 'InvalidJsonResponseError',
'Timeout', 'ConnectionError', 'ElasticHttpNotFoundError', 'Timeout', 'ConnectionError', 'ElasticHttpNotFoundError',
'IndexAlreadyExistsError'] 'IndexAlreadyExistsError']
__version__ = '0.4' __version__ = '0.5'
__version_info__ = tuple(__version__.split('.')) __version_info__ = tuple(__version__.split('.'))


get_version = lambda: __version_info__ get_version = lambda: __version_info__

0 comments on commit 99cbb43

Please sign in to comment.