~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Mark Hammond
  • Date: 2008-12-28 05:21:23 UTC
  • mfrom: (3920 +trunk)
  • mto: (3932.1.1 prepare-1.11)
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mhammond@skippinet.com.au-20081228052123-f78xs5sbdkotshwf
merge trunk

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, 10, 0, 'final', 0)
54
 
 
55
 
 
56
 
# API compatibility version: bzrlib is currently API compatible with 1.7.
57
 
api_minimum_version = (1, 7, 0)
 
53
version_info = (1, 11, 0, 'dev', 0)
 
54
 
 
55
 
 
56
# API compatibility version: bzrlib is currently API compatible with 1.11.
 
57
api_minimum_version = (1, 11, 0)
58
58
 
59
59
 
60
60
def _format_version_tuple(version_info):