~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/serializer/v08.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-22 18:37:26 UTC
  • mfrom: (1551.7.5 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20060622183726-70f1e7cb560cf090
Update StrictTestament support and as_sha1 algorithm, bump bundle version

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        to_file.write(text_line+'\n')
87
87
 
88
88
 
89
 
class BundleSerializerV07(BundleSerializer):
 
89
class BundleSerializerV08(BundleSerializer):
90
90
    def read(self, f):
91
91
        """Read the rest of the bundles from the supplied file.
92
92
 
123
123
        """Write the header for the changes"""
124
124
        f = self.to_file
125
125
        f.write(BUNDLE_HEADER)
126
 
        f.write('0.7\n')
 
126
        f.write('0.8\n')
127
127
        f.write('#\n')
128
128
 
129
129
    def _write(self, key, value, indent=1):