From 2f9842abed60bac52b6e05c807feb5e29bf1f116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Wed, 11 Feb 2015 22:24:57 +0100 Subject: [PATCH] post-release version bump to 1.5.0-dev --- 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 4bee791a..008d6ef1 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,9 @@ Changelog ========= +1.5.0 (dev) +----------- + 1.4.0 (2015-02-11) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 3efa2b21..4f74cf9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2013, Honza Král' # built documents. # # The short X.Y version. -version = '1.4.0' +version = '1.5.0' # The full version, including alpha/beta/rc tags. -release = '1.4.0' +release = '1.5.0-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 72674e1f..688e1712 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (1, 4, 0) +VERSION = (1, 5, 0, 'dev') __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 199d62d3..3faf12ef 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages import sys import os -VERSION = (1, 4, 0) +VERSION = (1, 5, 0, 'dev') __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))