~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robey Pointer
  • Date: 2006-07-01 19:03:33 UTC
  • mfrom: (1829 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: robey@lag.net-20060701190333-f58465aec4bd3412
merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
     to more locations than just branch locations.
66
66
     (Aaron Bentley)
67
67
 
 
68
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
69
     (Michael Ellerman)
 
70
 
 
71
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
72
     (Aaron Bentley)
 
73
 
68
74
  BUG FIXES:
69
75
 
70
76
    * Fix shadowed definition of TestLocationConfig that caused some 
74
80
    * Fix unnecessary requirement of sign-my-commits that it be run from
75
81
      a working directory.  (Martin Pool, Robert Collins)
76
82
 
 
83
    * 'bzr push location' will only remember the push location if it succeeds
 
84
      in connecting to the remote location. (#49742, John Arbash Meinel)
 
85
 
 
86
    * 'bzr revert' no longer toggles the executable bit on win32
 
87
      (#45010, John Arbash Meinel)
 
88
 
 
89
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
90
    
 
91
    * sftp tests now work correctly on win32 if you have a newer paramiko
 
92
      (John Arbash Meinel)
 
93
 
77
94
  INTERNALS:
78
95
 
79
96
    * Combine the ignore rules into a single regex rather than looping over
87
104
    * bzrlib.delta.compare_trees now iterates in alphabetically sorted order,
88
105
      rather than randomly walking the inventories. (John Arbash Meinel)
89
106
 
 
107
    * Doctests are now run in temporary directories which are cleaned up when
 
108
      they finish, rather than using special ScratchDir/ScratchBranch objects.
 
109
      (Martin Pool)
 
110
 
90
111
    * Split ``check`` into separate methods on the branch and on the repository,
91
112
      so that it can be specialized in ways that are useful or efficient for
92
113
      different formats.  (Martin Pool, Robert Collins)
103
124
      Uses subprocess instead of spawnvp.
104
125
      (#4047, #48914, James Henstridge, John Arbash Meinel)
105
126
 
 
127
    * New command line option '--profile-imports', which will install a custom
 
128
      importer to log time to import modules and regex compilation time to 
 
129
      sys.stderr (John Arbash Meinel)
 
130
 
106
131
bzr 0.8.2  2006-05-17
107
132
  
108
133
  BUG FIXES:
299
324
 
300
325
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
301
326
 
302
 
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
303
 
 
304
327
    * If bzr shows an unexpected revision-history after pulling (perhaps due
305
328
      to a reweave) it can now be corrected by 'bzr reconcile'.
306
329
      (Robert Collins)