~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2008-08-07 00:25:38 UTC
  • mfrom: (3612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3613.
  • Revision ID: andrew.bennetts@canonical.com-20080807002538-mtl1fcgy2fdabha4
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
42
42
# releaselevel of 'dev' for unreleased under-development code.
43
43
 
44
 
version_info = (1, 6, 0, 'beta', 4)
45
 
 
46
 
 
47
 
# API compatibility version: bzrlib is currently API compatible with 0.18.
48
 
api_minimum_version = (0, 18, 0)
 
44
version_info = (1, 7, 0, 'dev', 0)
 
45
 
 
46
 
 
47
# API compatibility version: bzrlib is currently API compatible with 1.6.
 
48
api_minimum_version = (1, 6, 0)
49
49
 
50
50
def _format_version_tuple(version_info):
51
51
    """Turn a version number 3-tuple or 5-tuple into a short string.