From 15206a8ce840c69c9c6517f7eb30fd62847b708c Mon Sep 17 00:00:00 2001 From: Martin Wendt Date: Sat, 2 Jun 2018 08:47:29 +0200 Subject: [PATCH] Prepare 3.0.0 alpha --- wsgidav/_version.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/wsgidav/_version.py b/wsgidav/_version.py index 8451ce66..eea96bc7 100644 --- a/wsgidav/_version.py +++ b/wsgidav/_version.py @@ -1,4 +1,14 @@ """ Current WsgiDAV version number. + +See https://www.python.org/dev/peps/pep-0440 + +Examples + Pre-releases (alpha, beta, release candidate): + '3.0.0a1', '3.0.0b1', '3.0.0rc1' + Final Release: + '3.0.0' + Developmental release (to mark 3.0.0 as 'used'. Don't publish this): + '3.0.0.dev1' """ -__version__ = "3.0.0" +__version__ = "3.0.0a1"