~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-08-05 01:14:07 UTC
  • mfrom: (3602.1.5 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080805011407-wmq7130znc0e6c4x
(robertc) Implement a --exclude option for commit which allows the
        exclusion of paths from the commit change detection logic.
        (Robert Collins, \#3117)

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.