~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

(mbp) release 2.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
user_encoding = get_user_encoding()
42
42
 
43
43
 
44
 
__copyright__ = "Copyright 2005, 2006, 2007, 2008, 2009 Canonical Ltd."
 
44
__copyright__ = "Copyright 2005-2010 Canonical Ltd."
45
45
 
46
46
# same format as sys.version_info: "A tuple containing the five components of
47
47
# the version number: major, minor, micro, releaselevel, and serial. All
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, 4, 'final', 0)
 
53
version_info = (2, 0, 5, 'final', 0)
54
54
 
55
55
# API compatibility version: bzrlib is currently API compatible with 1.15.
56
56
api_minimum_version = (1, 17, 0)