~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2006-01-30 06:23:50 UTC
  • mfrom: (1534.1.17 integration)
  • Revision ID: mbp@sourcefrog.net-20060130062350-d6f25277ddcdfd79
[merge] robert's integration of much recent work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr development version
 
2
 
 
3
  INTERNALS:
 
4
  
 
5
    * The internal storage of history, and logical branch identity have now
 
6
      been split into Branch, and Repository. The common locking and file 
 
7
      management routines are now in bzrlib.lockablefiles. 
 
8
      (Aaron Bentley, Robert Collins, Martin Pool)
 
9
 
 
10
  TESTING:
 
11
 
 
12
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
13
      for testing SFTP protocol support. (Robey Pointer)
 
14
 
1
15
bzr 0.7rc1 2006-01-09
2
16
 
3
17
  CHANGES:
274
288
    * Simplify handling of DivergedBranches in cmd_pull().
275
289
      (Michael Ellerman)
276
290
                   
 
291
   
 
292
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
293
      is exposed as Branch().control_files. Also this has been altered with the
 
294
      controlfile pre/suffix replaced by simple method names like 'get' and
 
295
      'put'. (Aaron Bentley, Robert Collins).
 
296
 
277
297
    * Deprecated functions and methods can now be marked as such using the 
278
298
      bzrlib.symbol_versioning module. Marked method have their docstring
279
299
      updated and will issue a DeprecationWarning using the warnings module