From 139dbbb02afffc5a7b69e558df046462c81359e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Tue, 11 Feb 2014 20:11:24 +0100 Subject: [PATCH] Version bump for master --- Changelog.rst | 3 +++ docs/conf.py | 4 ++-- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 2c3e25f7..905937ca 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,9 @@ Changelog ========= +1.0.1 (dev) +----------- + 1.0.0 (2014-02-11) ------------------ diff --git a/docs/conf.py b/docs/conf.py index f66593f8..7cd5414a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index ac8fc11e..2ec3ce53 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (1, 0, 0) +VERSION = (1, 0, 1) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 0cac7a6b..b488582b 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys import os -VERSION = (1, 0, 0) +VERSION = (1, 0, 1) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))