/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to __init__.py

Start working on 0.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from bzrlib.commands import plugin_cmds
34
34
from bzrlib.trace import warning
35
35
 
 
36
# versions ending in 'exp' mean experimental mappings
 
37
# versions ending in 'dev' mean development version
 
38
# versions ending in 'final' mean release (well tested, etc)
 
39
version_info = (0, 2, 0, 'dev', 0)
 
40
 
 
41
if version_info[3] == 'final':
 
42
    version_string = '%d.%d.%d' % version_info[:3]
 
43
else:
 
44
    version_string = '%d.%d.%d%s%d' % version_info
 
45
__version__ = version_string
 
46
 
36
47
MINIMUM_DULWICH_VERSION = (0, 1, 1)
37
48
COMPATIBLE_BZR_VERSIONS = [(1, 13, 0)]
38
49