~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-09-02 01:56:05 UTC
  • Revision ID: mbp@sourcefrog.net-20050902015604-3e3003f71665950b
- message typo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
 
1
bzr development head
 
2
 
 
3
  NEW FEATURES:
 
4
 
 
5
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
6
      help with intelligent shell completion.
 
7
 
 
8
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
9
 
 
10
 
 
11
  ENHANCEMENTS:
 
12
 
 
13
    * Much better merge support.
 
14
 
 
15
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
16
      (seven characters) which is the same as CVS and pleases things
 
17
      like emacs smerge.
 
18
 
 
19
 
 
20
  BUG FIXES:
 
21
 
 
22
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
23
      mention revisions that are not present.
 
24
 
 
25
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
26
 
 
27
    * Fix case of $EDITOR containing options for the editor.
 
28
 
 
29
 
 
30
  CHANGES:
 
31
 
 
32
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
33
 
 
34
 
 
35
  LIBRARY:
 
36
 
 
37
    * Changed trace messages to go through the standard logging
 
38
      framework, so that they can more easily be redirected by
 
39
      libraries.
 
40
 
 
41
 
 
42
 
 
43
bzr-0.0.6 2005-08-18
2
44
 
3
45
  NEW FEATURES:
4
46
 
17
59
 
18
60
    * ``bzr mv`` does move or rename depending on its arguments, like
19
61
      the Unix command.
20
 
    
 
62
 
 
63
    * ``bzr missing`` command shows a summary of the differences
 
64
      between two trees.  (Merged from John Arbash-Meinel.)
 
65
 
 
66
    * An email address for commits to a particular tree can be
 
67
      specified by putting it into .bzr/email within a branch.  (Based
 
68
      on a patch from Heikki Paajanen.)
 
69
 
 
70
 
21
71
  ENHANCEMENTS:
22
72
 
23
73
    * Faster working tree operations.
24
74
 
 
75
 
25
76
  CHANGES:
26
77
 
 
78
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
79
      python package, so that they can be installed by the setup
 
80
      script without clashing with anything already existing on the
 
81
      system.  (Contributed by Gustavo Niemeyer.)
 
82
 
 
83
    * Moved plugins directory to bzrlib/, so that there's a standard
 
84
      plugin directory which is not only installed with bzr itself but
 
85
      is also available when using bzr from the development tree.
 
86
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
87
      standard plugins directory.
 
88
 
27
89
    * When exporting to a tarball with ``bzr export --format tgz``, put 
28
90
      everything under a top directory rather than dumping it into the
29
91
      current directory.   This can be overridden with the ``--root`` 
49
111
      it.
50
112
 
51
113
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
114
 
 
115
    * Default log format is back to the long format; the compact one
 
116
      is available with ``--short``.
52
117
      
53
118
      
54
119
  BUG FIXES: