Skip to content

Commit 9b39e24

Browse files
committed
version bump to 0.0.4
1 parent 803bc25 commit 9b39e24

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
0.0.4 (dev)
7-
-----------
6+
0.0.4 (2015-04-24)
7+
------------------
88

99
* Metadata fields (such as id, parent, index, version etc) must be stored (and
1010
retrieved) using the ``meta`` attribute (#58) on both ``Result`` and

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '0.0.4'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '0.0.4-dev'
55+
release = '0.0.4'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
from .index import Index
1010
from .analysis import analyzer, token_filter, char_filter, tokenizer
1111

12-
VERSION = (0, 0, 4, 'dev')
12+
VERSION = (0, 0, 4)
1313
__version__ = VERSION
1414
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os.path import join, dirname
44
from setuptools import setup, find_packages
55

6-
VERSION = (0, 0, 4, 'dev')
6+
VERSION = (0, 0, 4)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)