# HG changeset patch # User Gustavo Picon # Date 1271398551 18000 # Node ID 882b6d1807613ddffe698319047f2477cb85511c # Parent a507bcdecc113c4ef26460db48479284c13ed6be 2.1 diff -r a507bcdecc113c4ef26460db48479284c13ed6be -r 882b6d1807613ddffe698319047f2477cb85511c docs/conf.py --- a/docs/conf.py Wed Apr 14 02:13:26 2010 -0500 +++ b/docs/conf.py Fri Apr 16 01:15:51 2010 -0500 @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = '2.1a' +version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.1a' +release = '2.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff -r a507bcdecc113c4ef26460db48479284c13ed6be -r 882b6d1807613ddffe698319047f2477cb85511c docs/index.rst --- a/docs/index.rst Wed Apr 14 02:13:26 2010 -0500 +++ b/docs/index.rst Fri Apr 16 01:15:51 2010 -0500 @@ -2,16 +2,16 @@ ======= :synopsys: Convert strings to numbers and numbers to strings. -:copyright: 2008-2009 by Gustavo Picon +:copyright: 2008-2010 by Gustavo Picon :license: Apache License 2.0 -:version: 2.1a +:version: 2.1 :url: http://code.tabo.pe/numconv/ :documentation: `numconv-docs - `_ + `_ :examples: `numconv-tests - `_ + `_ :mod:`numconv` converts a string into a number and a number into a string using default or user supplied encoding alphabets. diff -r a507bcdecc113c4ef26460db48479284c13ed6be -r 882b6d1807613ddffe698319047f2477cb85511c numconv.py --- a/numconv.py Wed Apr 14 02:13:26 2010 -0500 +++ b/numconv.py Fri Apr 16 01:15:51 2010 -0500 @@ -6,7 +6,7 @@ """ -__version__ = '2.1.0a' +__version__ = '2.1.0' # from april fool's rfc 1924 BASE85 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' \ diff -r a507bcdecc113c4ef26460db48479284c13ed6be -r 882b6d1807613ddffe698319047f2477cb85511c setup.py --- a/setup.py Wed Apr 14 02:13:26 2010 -0500 +++ b/setup.py Fri Apr 16 01:15:51 2010 -0500 @@ -3,7 +3,7 @@ import os from distutils.core import setup -version = '2.1a' +version = '2.1' classifiers = [ "Development Status :: 5 - Production/Stable",