~ubuntu-branches/ubuntu/lucid/bzr-gtk/lucid

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-07-17 13:03:57 UTC
  • mfrom: (1.4.1 upstream) (13.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090717130357-osauma3y0fe16c52
Tags: 0.96.2-1
* New upstream release.
* Bump standards version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
import os.path
47
47
 
48
 
version_info = (0, 96, 0, 'dev', 1)
 
48
version_info = (0, 96, 2, 'final')
49
49
 
50
50
if version_info[3] == 'final':
51
51
    version_string = '%d.%d.%d' % version_info[:3]
55
55
 
56
56
COMPATIBLE_BZR_VERSIONS = [(1, 6, 0), (1, 7, 0), (1, 8, 0), (1, 9, 0),
57
57
                           (1, 10, 0), (1, 11, 0), (1, 12, 0), (1, 13, 0),
58
 
                           (1, 15, 0),]
 
58
                           (1, 15, 0),
 
59
                           (1, 17, 0),]
59
60
 
60
61
bzrlib.api.require_any_api(bzrlib, COMPATIBLE_BZR_VERSIONS)
61
62