mirror of https://github.com/zulip/zulip.git
version: Set ZULIP_VERSION = "2.1.dev+git".
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 <anders@zulipchat.com>
This commit is contained in:
parent
06c2161f7e
commit
bae5e40f25
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue