5
* ``bzr shell-complete`` command contributed by Clint Adams to
6
help with intelligent shell completion.
8
* New expert command ``bzr find-merge-base`` for debugging merges.
13
* Much better merge support.
15
* merge3 conflicts are now reported with markers like '<<<<<<<'
16
(seven characters) which is the same as CVS and pleases things
22
* ``bzr upgrade`` no longer fails when trying to fix trees that
23
mention revisions that are not present.
25
* Fixed bugs in listing plugins from ``bzr plugins``.
27
* Fix case of $EDITOR containing options for the editor.
29
* Fix log -r refusing to show the last revision.
30
(Patch from Goffredo Baroncelli.)
35
* ``bzr log --show-ids`` shows the revision ids of all parents.
37
* Externally provided commands on your $BZRPATH no longer need
38
to recognize --bzr-usage to work properly, and can just handle
44
* Changed trace messages to go through the standard logging
45
framework, so that they can more easily be redirected by
54
* Python plugins, automatically loaded from the directories on
55
BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
57
* New 'bzr mkdir' command.
59
* Commit mesage is fetched from an editor if not given on the
60
command line; patch from Torsten Marek.
62
* ``bzr log -m FOO`` displays commits whose message matches regexp
65
* ``bzr add`` with no arguments adds everything under the current directory.
67
* ``bzr mv`` does move or rename depending on its arguments, like
70
* ``bzr missing`` command shows a summary of the differences
71
between two trees. (Merged from John Arbash-Meinel.)
73
* An email address for commits to a particular tree can be
74
specified by putting it into .bzr/email within a branch. (Based
75
on a patch from Heikki Paajanen.)
80
* Faster working tree operations.
85
* 3rd-party modules shipped with bzr are copied within the bzrlib
86
python package, so that they can be installed by the setup
87
script without clashing with anything already existing on the
88
system. (Contributed by Gustavo Niemeyer.)
90
* Moved plugins directory to bzrlib/, so that there's a standard
91
plugin directory which is not only installed with bzr itself but
92
is also available when using bzr from the development tree.
93
BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
94
standard plugins directory.
96
* When exporting to a tarball with ``bzr export --format tgz``, put
97
everything under a top directory rather than dumping it into the
98
current directory. This can be overridden with the ``--root``
99
option. Patch from William Dodé and John Meinel.
101
* New ``bzr upgrade`` command to upgrade the format of a branch,
102
replacing ``bzr check --update``.
104
* Files within store directories are no longer marked readonly on
107
* Changed ``bzr log`` output to a more compact form suggested by
108
John A Meinel. Old format is available with the ``--long`` or
109
``-l`` option, patched by William Dodé.
111
* By default the commit command refuses to record a revision with
112
no changes unless the ``--unchanged`` option is given.
114
* The ``--no-plugins``, ``--profile`` and ``--builtin`` command
115
line options must come before the command name because they
116
affect what commands are available; all other options must come
117
after the command name because their interpretation depends on
120
* ``branch`` and ``clone`` added as aliases for ``branch``.
122
* Default log format is back to the long format; the compact one
123
is available with ``--short``.
128
* Fix bugs in committing only selected files or within a subdirectory.
135
* ``bzr`` with no command now shows help rather than giving an
136
error. Suggested by Michael Ellerman.
138
* ``bzr status`` output format changed, because svn-style output
139
doesn't really match the model of bzr. Now files are grouped by
140
status and can be shown with their IDs. ``bzr status --all``
141
shows all versioned files and unknown files but not ignored files.
143
* ``bzr log`` runs from most-recent to least-recent, the reverse
144
of the previous order. The previous behaviour can be obtained
145
with the ``--forward`` option.
147
* ``bzr inventory`` by default shows only filenames, and also ids
148
if ``--show-ids`` is given, in which case the id is the second
1
bzr-0.0.5 NOT RELEASED YET
154
5
* New 'bzr whoami --email' option shows only the email component
155
6
of the user identification, from Jo Vermeulen.
157
* New ``bzr ignore PATTERN`` command.
8
* New 'bzr ignore PATTERN' command.
159
10
* Nicer error message for broken pipe, interrupt and similar
160
11
conditions that don't indicate an internal error.
162
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
13
* Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
164
15
* Per-branch locks keyed on ``.bzr/branch-lock``, available in
165
16
either read or write mode.
172
23
* Changed format for describing changes in ``bzr log -v``.
174
* New option ``bzr commit --file`` to take a message from a file,
175
suggested by LarstiQ.
177
* New syntax ``bzr status [FILE...]`` contributed by Bartosz
178
Oler. File may be in a branch other than the working directory.
180
* ``bzr log`` and ``bzr root`` can be given an http URL instead of
183
* Commands can now be defined by external programs or scripts
184
in a directory on $BZRPATH.
186
* New "stat cache" avoids reading the contents of files if they
187
haven't changed since the previous time.
189
* If the Python interpreter is too old, try to find a better one
190
or give an error. Based on a patch from Fredrik Lundh.
192
* New optional parameter ``bzr info [BRANCH]``.
194
* New form ``bzr commit SELECTED`` to commit only selected files.
196
* New form ``bzr log -r FROM:TO`` shows changes in selected
197
range; contributed by John A Meinel.
199
* New option ``bzr diff --diff-options 'OPTS'`` allows passing
200
options through to an external GNU diff.
202
* New option ``bzr add --no-recurse`` to add a directory but not
205
* ``bzr --version`` now shows more information if bzr is being run
211
* Fixed diff format so that added and removed files will be
212
handled properly by patch. Fix from Lalo Martins.
214
* Various fixes for files whose names contain spaces or other
220
27
* Converted black-box test suites from Bourne shell into Python;
221
28
now run using ``./testbzr``. Various structural improvements to
224
* testbzr by default runs the version of bzr found in the same
225
directory as the tests, or the one given as the first parameter.
227
* testbzr also runs the internal tests, so the only command
228
required to check is just ``./testbzr``.
230
* testbzr requires python2.4, but can be used to test bzr running
231
under a different version.
233
* Tests added for many other changes in this release.
238
33
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
240
* Refactor command functions into Command objects based on HCT by
35
* Refactor command functions into Command objects based on
36
mango-sorbet by Scott James Remnant.
243
38
* Better help messages for many commands.