~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Robert Collins
  • Date: 2008-08-04 22:41:18 UTC
  • mto: This revision was merged to the branch mainline in revision 3603.
  • Revision ID: robertc@robertcollins.net-20080804224118-pgxd6gg6a54luvrv
Document the change in the command lines use of MutablelTree and bump the API minimum version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
version_info = (1, 6, 0, 'beta', 4)
45
45
 
46
46
 
47
 
# API compatibility version: bzrlib is currently API compatible with 0.18.
48
 
api_minimum_version = (0, 18, 0)
 
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.