~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: aaron.bentley at utoronto
  • Date: 2005-09-04 02:59:56 UTC
  • mfrom: (1172)
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: aaron.bentley@utoronto.ca-20050904025956-776ba4f07de97700
Merged mpool's latest changes (~0.0.7)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
2
 
 
3
 
  CHANGES:
 
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
 
44
 
 
45
  NEW FEATURES:
 
46
 
 
47
    * Python plugins, automatically loaded from the directories on
 
48
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
49
 
 
50
    * New 'bzr mkdir' command.
 
51
 
 
52
    * Commit mesage is fetched from an editor if not given on the
 
53
      command line; patch from Torsten Marek.
 
54
 
 
55
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
56
      FOO.
 
57
      
 
58
    * ``bzr add`` with no arguments adds everything under the current directory.
 
59
 
 
60
    * ``bzr mv`` does move or rename depending on its arguments, like
 
61
      the Unix command.
 
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
 
 
71
  ENHANCEMENTS:
 
72
 
 
73
    * Faster working tree operations.
 
74
 
 
75
 
 
76
  CHANGES:
 
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
 
 
89
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
90
      everything under a top directory rather than dumping it into the
 
91
      current directory.   This can be overridden with the ``--root`` 
 
92
      option.  Patch from William Dodé and John Meinel.
4
93
 
5
94
    * New ``bzr upgrade`` command to upgrade the format of a branch,
6
95
      replacing ``bzr check --update``.
8
97
    * Files within store directories are no longer marked readonly on
9
98
      disk.
10
99
 
 
100
    * Changed ``bzr log`` output to a more compact form suggested by
 
101
      John A Meinel.  Old format is available with the ``--long`` or
 
102
      ``-l`` option, patched by William Dodé.
 
103
 
 
104
    * By default the commit command refuses to record a revision with
 
105
      no changes unless the ``--unchanged`` option is given.
 
106
 
 
107
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
108
      line options must come before the command name because they 
 
109
      affect what commands are available; all other options must come 
 
110
      after the command name because their interpretation depends on
 
111
      it.
 
112
 
 
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``.
 
117
      
 
118
      
 
119
  BUG FIXES:
 
120
  
 
121
    * Fix bugs in committing only selected files or within a subdirectory.
 
122
 
11
123
 
12
124
bzr-0.0.5  2005-06-15
13
125