Changeset - c12f4d19c950
[Not reviewed]
Marcin Kuzminski - 15 years ago 2010-06-29 20:45:35
marcin@python-works.com
version bump
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pylons_app/__init__.py
Show inline comments
 
@@ -15,21 +15,21 @@
 
# 
 
# You should have received a copy of the GNU General Public License
 
# along with this program; if not, write to the Free Software
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
# MA  02110-1301, USA.
 

	
 
"""
 
Created on April 9, 2010
 
Hg app, a web based mercurial repository managment based on pylons
 
@author: marcink
 
"""
 

	
 
VERSION = (0, 7, 8, 'beta')
 
VERSION = (0, 7, 9, 'beta')
 

	
 
__version__ = '.'.join((str(each) for each in VERSION[:4]))
 

	
 
def get_version():
 
    """
 
    Returns shorter version (digit parts only) as string.
 
    """
 
    return '.'.join((str(each) for each in VERSION[:3]))
0 comments (0 inline, 0 general)