~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-13 14:30:34 UTC
  • mto: (1946.2.6 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1914.
  • Revision ID: john@arbash-meinel.com-20060813143034-a6fb4fba59186727
Update version numbers now that bzr-0.9 is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
del locale
34
34
 
35
35
__copyright__ = "Copyright 2005, 2006 Canonical Development Ltd."
36
 
__version__ = version_string = '0.9'
 
36
__version__ = version_string = '0.10'
37
37
 
38
38
# same format as sys.version_info: "A tuple containing the five components of
39
39
# the version number: major, minor, micro, releaselevel, and serial. All
42
42
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
43
43
# releaselevel of 'dev' for unreleased under-development code.
44
44
 
45
 
version_info = (0, 9, 0, 'final', 0)
 
45
version_info = (0, 10, 0, 'dev', 0)
46
46
 
47
47
if version_info[3] == 'final':
48
48
    version_string = '%d.%d.%d' % version_info[:3]