~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to info.py

  • Committer: Martin Albisetti
  • Date: 2008-08-06 20:05:20 UTC
  • mfrom: (201.1.1 fix_1.6)
  • Revision ID: argentina@gmail.com-20080806200520-0q9va543yo1486nw
Added both methods to fix API break in 1.6. Bug #253520

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# API Info for loggerhead
3
 
 
4
 
bzr_plugin_name = "loggerhead"
5
 
 
6
 
bzr_plugin_version = (1, 17, 0)
7
 
 
8
 
bzr_compatible_versions = [
9
 
        (1, 13, 0), (1, 15, 0), (1, 16, 0), (1, 17, 0), (1, 18, 0),
10
 
        (2, 0, 0), (2, 1, 0), (2, 2, 0), (2, 3, 0)]
11
 
 
12
 
bzr_minimum_version = bzr_compatible_versions[0]
13
 
 
14
 
bzr_maximum_version = bzr_compatible_versions[-1]