Fix -dev version and add version number docs

Version numbers should adhere to PEP-386.
This commit is contained in:
Will Kahn-Greene 2011-12-15 09:27:56 -05:00
parent 31f5c4567f
commit 8d45c4463b

View File

@ -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"