~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-0.6.txt

  • Committer: Andrew Bennetts
  • Date: 2010-10-08 08:15:14 UTC
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101008081514-dviqzrdfwyzsqbz2
Split NEWS into per-release doc/en/release-notes/bzr-*.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  ``gpg_signing_command`` (defaults to gpg) and record a digital signature
53
53
  of your commit. (Robert Collins)
54
54
 
55
 
* New SFTP transport, based on Paramiko.  (Robey Pointer)
 
55
* New sftp transport, based on Paramiko.  (Robey Pointer)
56
56
 
57
57
* 'bzr pull' now accepts '--clobber' which will discard local changes
58
58
  and make this branch identical to the source branch. (Robert Collins)
187
187
  are returned as NoSuchFile. Other exceptions will propagate as normal.
188
188
  This allows debuging of actual errors. (Robert Collins)
189
189
 
190
 
* bzrlib.transport.Transport now accepts *ONLY* URL-escaped relative paths
 
190
* bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
191
191
  to apis like 'put', 'get' and 'has'. This is to provide consistent
192
 
  behaviour - it operates on URLs only. (Robert Collins)
 
192
  behaviour - it operates on url's only. (Robert Collins)
193
193
 
194
194
* Transports can register using ``register_lazy_transport``, and they
195
195
  will be loaded when first used.  (Martin Pool)