Skip to content

Commit

Permalink
Version bump for master
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Feb 11, 2014
1 parent 9bd4303 commit 139dbbb
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
=========

1.0.1 (dev)
-----------

1.0.0 (2014-02-11)
------------------

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 = '1.0.0'
version = '1.0.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.0.1 (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/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import os

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

Expand Down

0 comments on commit 139dbbb

Please sign in to comment.