~qbzr-dev/qbzr/trunk2a

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Alexander Belchenko
  • Date: 2016-04-09 22:12:16 UTC
  • Revision ID: alexander.belchenko@gmail.com-20160409221216-c0jf9yumgh2oml4l
Tags: release-0.23.2
prepare 0.23.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# QBzr - Qt frontend to Bazaar commands
4
4
# Copyright (C) 2008 Lukáš Lalinský <lalinsky@gmail.com>
5
 
# Copyright (C) 2009, 2010, 2011, 2012, 2013 QBzr Developers
 
5
# Copyright (C) 2009-2016 QBzr Developers
6
6
#
7
7
# This program is free software; you can redistribute it and/or
8
8
# modify it under the terms of the GNU General Public License
74
74
 
75
75
from __future__ import absolute_import
76
76
 
77
 
version_info = (0,23,2,'dev',0)
 
77
version_info = (0,23,2,'final',0)
78
78
__version__ = '.'.join(map(str, version_info))
79
79
 
80
80