Skip to content

Commit

Permalink
Version bmp for master as 0.0.5 dev
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Apr 24, 2015
1 parent 3fd0d11 commit 33e850d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Changelog
=========

0.0.5 (dev)
-----------

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

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0.4'
version = '0.0.5'
# The full version, including alpha/beta/rc tags.
release = '0.0.4'
release = '0.0.5 dev'

# 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)
VERSION = (0, 0, 5, 'dev')
__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)
VERSION = (0, 0, 5, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit 33e850d

Please sign in to comment.