/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Robert Collins
  • Date: 2008-08-08 05:25:58 UTC
  • mto: This revision was merged to the branch mainline in revision 3618.
  • Revision ID: robertc@robertcollins.net-20080808052558-b3xkprmd19buq12s
Teach export how to export a subdirectory. (Robert Collins)

Show diffs side-by-side

added added

removed removed

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