projects
/
mediagoblin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31f5c45
)
Fix -dev version and add version number docs
author
Will Kahn-Greene
<willg@bluesock.org>
Thu, 15 Dec 2011 14:27:56 +0000
(09:27 -0500)
committer
Will 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
patch
|
blob
|
blame
|
history
diff --git
a/mediagoblin/_version.py
b/mediagoblin/_version.py
index 5e3f4e5a964e5d465d70e5872e9f5cf969912845..5e69f21a13afe19bf2352a665350f8cdc1d2c567 100644
(file)
--- 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 <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"