~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: 2010-02-17 05:57:15 UTC
  • mfrom: (5036.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100217055715-5b8xt6dfbov0bbgz
(mbp) merge 2.1 back to trunk

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