~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2008-01-16 00:26:25 UTC
  • mto: This revision was merged to the branch mainline in revision 3190.
  • Revision ID: mbp@sourcefrog.net-20080116002625-c1hbpaxotm5be1rj
Improved and reformatted developer documentation on the Bazaar release process.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""bzr library"""
18
18
 
19
 
import time
20
 
 
21
 
# Keep track of when bzrlib was first imported, so that we can give rough
22
 
# timestamps relative to program start in the log file kept by bzrlib.trace.
23
 
_start_time = time.time()
24
 
 
25
19
from bzrlib.osutils import get_user_encoding
26
20
 
27
21
 
32
26
user_encoding = get_user_encoding()
33
27
 
34
28
 
35
 
__copyright__ = "Copyright 2005, 2006, 2007, 2008 Canonical Ltd."
 
29
__copyright__ = "Copyright 2005, 2006, 2007 Canonical Ltd."
36
30
 
37
31
# same format as sys.version_info: "A tuple containing the five components of
38
32
# the version number: major, minor, micro, releaselevel, and serial. All
41
35
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
42
36
# releaselevel of 'dev' for unreleased under-development code.
43
37
 
44
 
version_info = (1, 2, 0, 'dev', 0)
 
38
version_info = (1, 1, 0, 'dev', 0)
45
39
 
46
40
# API compatibility version: bzrlib is currently API compatible with 0.18.
47
41
api_minimum_version = (0, 18, 0)