~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Aaron Bentley
  • Date: 2007-08-21 01:32:29 UTC
  • mfrom: (2727 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2736.
  • Revision ID: aaron.bentley@utoronto.ca-20070821013229-miopsemz249tv0bl
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
36
36
# releaselevel of 'dev' for unreleased under-development code.
37
37
 
38
 
version_info = (0, 90, 0, 'dev', 0)
 
38
version_info = (0, 91, 0, 'dev', 0)
39
39
 
40
40
# API compatibility version: bzrlib is currently API compatible with 0.18.
41
41
api_minimum_version = (0, 18, 0)
46
46
    version_string = '%d.%d.%d%s%d' % version_info
47
47
__version__ = version_string
48
48
 
49
 
from bzrlib.symbol_versioning import (deprecated_function,
50
 
                                      zero_seven,
51
 
                                      zero_nine,
52
 
                                      deprecated_list,
53
 
                                     )
54
 
 
55
 
# Kept for compatibility with 0.8, it is considered deprecated to modify it
56
 
DEFAULT_IGNORE = deprecated_list(zero_nine, 'DEFAULT_IGNORE', [],
57
 
                    'Consider using bzrlib.ignores.add_unique_user_ignores'
58
 
                    ' or bzrlib.ignores.add_runtime_ignores')
59
 
 
60
49
# allow bzrlib plugins to be imported.
61
50
import bzrlib.plugin
62
51
bzrlib.plugin.set_plugins_path()