Skip to content

Commit

Permalink
version bump for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Jan 3, 2015
1 parent e3bfeee commit b3c2ef2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 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.4.0 (dev)
-----------

1.3.0 (2014-12-31)
------------------

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.3.0'
version = '1.4.0'
# The full version, including alpha/beta/rc tags.
release = '1.3.0'
release = '1.4.0-dev'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 2 additions & 3 deletions elasticsearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

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

Expand All @@ -9,8 +9,7 @@
if (2, 7) <= sys.version_info < (3, 2):
# On Python 2.7 and Python3 < 3.2, install no-op handler to silence
# `No handlers could be found for logger "elasticsearch"` message per
# <https://docs.python.org/2/howto/logging.html#configuring-logging-for-a-library>,
# <https://docs.python.org/3/howto/logging.html#configuring-logging-for-a-library>:
# <https://docs.python.org/2/howto/logging.html#configuring-logging-for-a-library>
import logging
logger = logging.getLogger('elasticsearch')
logger.addHandler(logging.NullHandler())
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, 3, 0)
VERSION = (1, 4, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit b3c2ef2

Please sign in to comment.