From: Will Kahn-Greene Date: Thu, 15 Dec 2011 14:27:56 +0000 (-0500) Subject: Fix -dev version and add version number docs X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8d45c4463bf7bf9dfebe919bb12d588d45d7e30c;p=mediagoblin.git Fix -dev version and add version number docs Version numbers should adhere to PEP-386. --- diff --git a/mediagoblin/_version.py b/mediagoblin/_version.py index 5e3f4e5a..5e69f21a 100644 --- a/mediagoblin/_version.py +++ b/mediagoblin/_version.py @@ -14,4 +14,13 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -__version__ = "0.3.0-dev" +# valid version formats: +# * x.y - final release +# * x.ya1 - alpha 1 +# * x.yb1 - beta 1 +# * x.yrc1 - release candidate 1 +# * x.y.dev - dev + +# see http://www.python.org/dev/peps/pep-0386/ + +__version__ = "0.3.0.dev"