~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

first cut at merge from integration.

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:
154
168
    * Remove Makefile.in from default ignore list.  (#6413, Tollef Fog 
155
169
      Heen, Martin Pool)
156
170
 
 
171
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
172
 
157
173
  TESTING:
158
174
 
159
175
    * Fix selftest asking for passwords when there are no SFTP keys.  
272
288
    * Simplify handling of DivergedBranches in cmd_pull().
273
289
      (Michael Ellerman)
274
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
 
275
297
    * Deprecated functions and methods can now be marked as such using the 
276
298
      bzrlib.symbol_versioning module. Marked method have their docstring
277
299
      updated and will issue a DeprecationWarning using the warnings module