~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/bzr.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-03 05:01:52 UTC
  • mfrom: (13081.2.20 newer-bzr)
  • Revision ID: launchpad@pqm.canonical.com-20110603050152-qvu17gaqkvalj1hv
[r=allenap][bug=660790, 670870, 674581, 688459, 691994,
        709539] Update Bazaar to 2.3.3 and bzr-svn, bzr-hg,
        bzr-git and bzr-loom to their current tips.

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
        "1.6.1-subtree with B+Tree indices.\n"
214
214
        )
215
215
 
 
216
    BZR_DEV_8 = DBItem(306,
 
217
        "Bazaar development format 8\n",
 
218
        "2a repository format with support for nested trees.\n"
 
219
        )
 
220
 
216
221
    BZR_CHK1 = DBItem(400,
217
222
        "Bazaar development format - group compression and chk inventory"
218
223
        " (needs bzr.dev from 1.14)\n",
269
274
    RepositoryFormat.BZR_DEV_1_SUBTREE,
270
275
    RepositoryFormat.BZR_DEV_2,
271
276
    RepositoryFormat.BZR_DEV_2_SUBTREE,
 
277
    RepositoryFormat.BZR_DEV_8,
272
278
    RepositoryFormat.BZR_CHK1,
273
279
    RepositoryFormat.BZR_CHK2,
274
280
    RepositoryFormat.BZR_CHK_2A)