~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-09-02 13:32:52 UTC
  • mfrom: (4634.6.14 2.0)
  • mto: (4634.6.15 2.0)
  • mto: This revision was merged to the branch mainline in revision 4667.
  • Revision ID: john@arbash-meinel.com-20090902133252-t2t94xtckoliv2th
Merge lp:bzr/2.0 to resolve NEWS issues.

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 = (2, 0, 0, 'dev', 0)
 
53
version_info = (2, 0, 0, 'candidate', 1)
54
54
 
55
55
# API compatibility version: bzrlib is currently API compatible with 1.15.
56
56
api_minimum_version = (1, 17, 0)
70
70
    1.2dev
71
71
    >>> print _format_version_tuple((1, 1, 1, 'candidate', 2))
72
72
    1.1.1rc2
 
73
    >>> print bzrlib._format_version_tuple((2, 1, 0, 'beta', 1))
 
74
    2.1b1
73
75
    >>> print _format_version_tuple((1, 4, 0))
74
76
    1.4
75
77
    >>> print _format_version_tuple((1, 4))