~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-30 23:58:46 UTC
  • Revision ID: robertc@robertcollins.net-20051030235846-fda8b626748cce52
Move Branch.read_working_inventory to WorkingTree.

Branch.read_working_inventory has moved to
WorkingTree.read_working_inventory. This necessitated changes to
Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
as well. To make it clear that a WorkingTree cannot always be obtained
Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
be obtained. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    * Some option parsing errors will raise 'BzrOptionError', allowing 
37
37
      granular detection for decorating commands. (Robert Collins).
38
38
 
 
39
    * Branch.read_working_inventory has moved to
 
40
      WorkingTree.read_working_inventory. This necessitated changes to
 
41
      Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
 
42
      as well. To make it clear that a WorkingTree cannot always be obtained
 
43
      Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
 
44
      be obtained. (Robert Collins)
 
45
 
39
46
  BUG FIXES:
40
47
 
41
48
    * SFTP can walk up to the root path without index errors. (Robert Collins)