~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-07-08 14:37:25 UTC
  • mfrom: (4516 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4517.
  • Revision ID: john@arbash-meinel.com-20090708143725-sc9sjy3mz4cxwxzz
Merge bzr.dev 4516

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
51
51
# releaselevel of 'dev' for unreleased under-development code.
52
52
 
53
 
version_info = (1, 16, 0, 'dev', 0)
 
53
version_info = (1, 17, 0, 'dev', 0)
54
54
 
55
 
# API compatibility version: bzrlib is currently API compatible with 1.13.
56
 
api_minimum_version = (1, 15, 0)
 
55
# API compatibility version: bzrlib is currently API compatible with 1.15.
 
56
api_minimum_version = (1, 17, 0)
57
57
 
58
58
def _format_version_tuple(version_info):
59
59
    """Turn a version number 2, 3 or 5-tuple into a short string.