Skip to content

Commit

Permalink
version bump to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Apr 24, 2015
1 parent 803bc25 commit 9b39e24
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

0.0.4 (dev)
-----------
0.0.4 (2015-04-24)
------------------

* Metadata fields (such as id, parent, index, version etc) must be stored (and
retrieved) using the ``meta`` attribute (#58) on both ``Result`` and
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '0.0.4'
# The full version, including alpha/beta/rc tags.
release = '0.0.4-dev'
release = '0.0.4'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
from .index import Index
from .analysis import analyzer, token_filter, char_filter, tokenizer

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

VERSION = (0, 0, 4, 'dev')
VERSION = (0, 0, 4)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit 9b39e24

Please sign in to comment.