From bae5e40f253804ac7e1c0e2c3d1ecbf29d2efc3f Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 19 Nov 2019 18:52:53 -0800 Subject: [PATCH] version: Set ZULIP_VERSION = "2.1.dev+git". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we don’t support downgrading from master to any 2.0.x release, we shouldn’t set a ZULIP_VERSION that might lead someone to mistake any such downgrade for an upgrade. ZULIP_VERSION should always be at least a minor version ahead of LATEST_RELEASE_VERSION, except on the release branch. `.dev` is a decreasing suffix that sorts before `alpha`, `beta`, `rc` according to PEP 440/`packaging.version.Version`. Signed-off-by: Anders Kaseorg --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 6fab645c7c..74a569d07c 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ import os -ZULIP_VERSION = "2.0.6+git" +ZULIP_VERSION = "2.1.dev+git" # Add information on number of commits and commit hash to version, if available zulip_git_version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'zulip-git-version') if os.path.exists(zulip_git_version_file):