~ubuntu-branches/ubuntu/maverick/bzr-git/maverick

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-05-12 02:20:29 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090512022029-sq1phqm0xqypvpt4
Tags: 0.3.1-1
New upstream snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
# versions ending in 'exp' mean experimental mappings
56
56
# versions ending in 'dev' mean development version
57
57
# versions ending in 'final' mean release (well tested, etc)
58
 
version_info = (0, 3, 0, 'final', 0)
 
58
version_info = (0, 3, 1, 'final', 0)
59
59
 
60
60
if version_info[3] == 'final':
61
61
    version_string = '%d.%d.%d' % version_info[:3]
63
63
    version_string = '%d.%d.%d%s%d' % version_info
64
64
__version__ = version_string
65
65
 
66
 
MINIMUM_DULWICH_VERSION = (0, 3, 0)
 
66
MINIMUM_DULWICH_VERSION = (0, 3, 1)
67
67
COMPATIBLE_BZR_VERSIONS = [(1, 14, 0), (1, 15, 0)]
68
68
 
69
69
if getattr(sys, "frozen", None):