~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2010-02-17 15:50:09 UTC
  • mfrom: (5042 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5043.
  • Revision ID: jelmer@samba.org-20100217155009-ok2wijesnvly49sg
merge devel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
IGNORE_FILENAME = ".bzrignore"
36
36
 
37
37
 
38
 
__copyright__ = "Copyright 2005, 2006, 2007, 2008, 2009 Canonical Ltd."
 
38
__copyright__ = "Copyright 2005-2010 Canonical Ltd."
39
39
 
40
40
# same format as sys.version_info: "A tuple containing the five components of
41
41
# the version number: major, minor, micro, releaselevel, and serial. All
46
46
 
47
47
version_info = (2, 2, 0, 'dev', 1)
48
48
 
49
 
# API compatibility version: bzrlib is currently API compatible with 1.15.
 
49
# API compatibility version
50
50
api_minimum_version = (2, 1, 0)
51
51
 
52
52