Fix -dev version and add version number docs
authorWill Kahn-Greene <willg@bluesock.org>
Thu, 15 Dec 2011 14:27:56 +0000 (09:27 -0500)
committerWill Kahn-Greene <willg@bluesock.org>
Thu, 15 Dec 2011 14:28:48 +0000 (09:28 -0500)
Version numbers should adhere to PEP-386.

mediagoblin/_version.py

index 5e3f4e5a964e5d465d70e5872e9f5cf969912845..5e69f21a13afe19bf2352a665350f8cdc1d2c567 100644 (file)
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-__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"