703
by Martin Pool
- split out a new 'bzr upgrade' command separate from |
1 |
DEVELOPMENT HEAD |
2 |
||
3 |
CHANGES: |
|
4 |
||
5 |
* New ``bzr upgrade`` command to upgrade the format of a branch, |
|
6 |
replacing ``bzr check --update``. |
|
7 |
||
8 |
||
9 |
||
692
by Martin Pool
0.0.5 release |
10 |
bzr-0.0.5 2005-06-15 |
448
by Martin Pool
- bzr with no command now shows help, not just an error |
11 |
|
12 |
CHANGES: |
|
13 |
||
14 |
* ``bzr`` with no command now shows help rather than giving an |
|
15 |
error. Suggested by Michael Ellerman. |
|
16 |
||
465
by Martin Pool
- Move show_status() out of Branch into a new function in |
17 |
* ``bzr status`` output format changed, because svn-style output |
18 |
doesn't really match the model of bzr. Now files are grouped by |
|
19 |
status and can be shown with their IDs. ``bzr status --all``
|
|
20 |
shows all versioned files and unknown files but not ignored files.
|
|
21 |
||
527
by Martin Pool
- refactor log command |
22 |
* ``bzr log`` runs from most-recent to least-recent, the reverse
|
545
by Martin Pool
- --forward option for log |
23 |
of the previous order. The previous behaviour can be obtained
|
24 |
with the ``--forward`` option.
|
|
588
by Martin Pool
- change inventory command to not show ids by default |
25 |
|
26 |
* ``bzr inventory`` by default shows only filenames, and also ids
|
|
27 |
if ``--show-ids`` is given, in which case the id is the second
|
|
28 |
field.
|
|
527
by Martin Pool
- refactor log command |
29 |
|
286
by Martin Pool
- New bzr whoami --email option |
30 |
|
31 |
ENHANCEMENTS:
|
|
32 |
||
33 |
* New 'bzr whoami --email' option shows only the email component |
|
34 |
of the user identification, from Jo Vermeulen.
|
|
35 |
||
420
by Martin Pool
Doc |
36 |
* New ``bzr ignore PATTERN`` command.
|
310
by Martin Pool
- new 'bzr ignored' command! |
37 |
|
318
by Martin Pool
- better error message for Ctrl-c |
38 |
* Nicer error message for broken pipe, interrupt and similar
|
39 |
conditions that don't indicate an internal error. |
|
317
by Martin Pool
- better error message for broken pipe |
40 |
|
618
by Martin Pool
- ignore .git files as well |
41 |
* Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns. |
348
by Martin Pool
- Add vim and RCS ignorefile patterns |
42 |
|
353
by Martin Pool
- Per-branch locks in read and write modes. |
43 |
* Per-branch locks keyed on ``.bzr/branch-lock``, available in |
44 |
either read or write mode. |
|
45 |
||
384
by Martin Pool
doc |
46 |
* New option ``bzr log --show-ids`` shows revision and file ids. |
367
by Martin Pool
- New --show-ids option for bzr log |
47 |
|
378
by Martin Pool
- New usage bzr log FILENAME |
48 |
* New usage ``bzr log FILENAME`` shows only revisions that |
49 |
affected that file. |
|
50 |
||
379
by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees |
51 |
* Changed format for describing changes in ``bzr log -v``. |
52 |
||
389
by Martin Pool
- new commit --file option! |
53 |
* New option ``bzr commit --file`` to take a message from a file, |
54 |
suggested by LarstiQ. |
|
55 |
||
468
by Martin Pool
- Interpret arguments to bzr status |
56 |
* New syntax ``bzr status [FILE...]`` contributed by Bartosz |
57 |
Oler. File may be in a branch other than the working directory. |
|
404
by Martin Pool
- bzr status now optionally takes filenames to check |
58 |
|
416
by Martin Pool
- bzr log and bzr root now accept an http URL |
59 |
* ``bzr log`` and ``bzr root`` can be given an http URL instead of |
60 |
a filename. |
|
61 |
||
422
by Martin Pool
- External-command patch from mpe |
62 |
* Commands can now be defined by external programs or scripts |
63 |
in a directory on $BZRPATH. |
|
64 |
||
440
by Martin Pool
doc |
65 |
* New "stat cache" avoids reading the contents of files if they |
66 |
haven't changed since the previous time. |
|
67 |
||
443
by Martin Pool
- Patch from Fredrik Lundh to check Python version and |
68 |
* If the Python interpreter is too old, try to find a better one
|
69 |
or give an error. Based on a patch from Fredrik Lundh.
|
|
70 |
||
472
by Martin Pool
- Optional branch parameter to info command |
71 |
* New optional parameter ``bzr info [BRANCH]``.
|
72 |
||
491
by Martin Pool
- Selective commit! |
73 |
* New form ``bzr commit SELECTED`` to commit only selected files.
|
74 |
||
567
by Martin Pool
- New form 'bzr log -r FROM:TO' |
75 |
* New form ``bzr log -r FROM:TO`` shows changes in selected
|
76 |
range; contributed by John A Meinel.
|
|
77 |
||
571
by Martin Pool
- new --diff-options to pass options through to external |
78 |
* New option ``bzr diff --diff-options 'OPTS'`` allows passing |
79 |
options through to an external GNU diff.
|
|
80 |
||
594
by Martin Pool
- add --no-recurse option for add command |
81 |
* New option ``bzr add --no-recurse`` to add a directory but not
|
82 |
their contents.
|
|
83 |
||
607
by Martin Pool
doc |
84 |
* ``bzr --version`` now shows more information if bzr is being run
|
85 |
from a branch.
|
|
86 |
||
441
by Martin Pool
- Fix from Lalo for unidiff output of newly added |
87 |
|
88 |
BUG FIXES:
|
|
89 |
||
90 |
* Fixed diff format so that added and removed files will be
|
|
91 |
handled properly by patch. Fix from Lalo Martins.
|
|
92 |
||
536
by Martin Pool
doc |
93 |
* Various fixes for files whose names contain spaces or other
|
94 |
metacharacters.
|
|
95 |
||
404
by Martin Pool
- bzr status now optionally takes filenames to check |
96 |
|
296
by Martin Pool
- better reports from testbzr when it fails |
97 |
TESTING:
|
98 |
||
340
by Martin Pool
- more testcase fixes |
99 |
* Converted black-box test suites from Bourne shell into Python;
|
100 |
now run using ``./testbzr``. Various structural improvements to
|
|
101 |
the tests.
|
|
297
by Martin Pool
- fix intentional testcase failure |
102 |
|
398
by Martin Pool
- testbzr finds the right version of bzr to test |
103 |
* testbzr by default runs the version of bzr found in the same
|
104 |
directory as the tests, or the one given as the first parameter.
|
|
105 |
||
399
by Martin Pool
- testbzr also runs selftests |
106 |
* testbzr also runs the internal tests, so the only command
|
107 |
required to check is just ``./testbzr``.
|
|
108 |
||
508
by Martin Pool
- new -p option for testbzr to use a different version of python |
109 |
* testbzr requires python2.4, but can be used to test bzr running
|
110 |
under a different version.
|
|
111 |
||
594
by Martin Pool
- add --no-recurse option for add command |
112 |
* Tests added for many other changes in this release.
|
113 |
||
398
by Martin Pool
- testbzr finds the right version of bzr to test |
114 |
|
314
by Martin Pool
- Update ElementTree to 1.2.6 |
115 |
INTERNAL:
|
116 |
||
117 |
* Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
|
|
118 |
||
389
by Martin Pool
- new commit --file option! |
119 |
* Refactor command functions into Command objects based on HCT by
|
120 |
Scott James Remnant.
|
|
329
by Martin Pool
- refactor command functions into command classes |
121 |
|
122 |
* Better help messages for many commands.
|
|
123 |
||
344
by Martin Pool
- It's not an error to use the library without |
124 |
* Expose bzrlib.open_tracefile() to start the tracefile; until
|
125 |
this is called trace messages are just discarded.
|
|
126 |
||
375
by Martin Pool
- New command touching-revisions and function to trace |
127 |
* New internal function find_touching_revisions() and hidden
|
128 |
command touching-revisions trace the changes to a given file.
|
|
297
by Martin Pool
- fix intentional testcase failure |
129 |
|
379
by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees |
130 |
* Simpler and faster compare_inventories() function.
|
131 |
||
397
by Martin Pool
- open_tracefile takes a tracefilename parameter |
132 |
* bzrlib.open_tracefile() takes a tracefilename parameter.
|
133 |
||
409
by Martin Pool
- New AtomicFile class |
134 |
* New AtomicFile class.
|
440
by Martin Pool
doc |
135 |
|
136 |
* New developer commands ``added``, ``modified``.
|
|
137 |
||
444
by Martin Pool
- cope on platforms with no urandom feature |
138 |
|
139 |
PORTABILITY:
|
|
140 |
||
141 |
* Cope on Windows on python2.3 by using the weaker random seed.
|
|
142 |
2.4 is now only recommended.
|
|
143 |
||
144 |
||
280
by Martin Pool
Prepare for 0.0.4 release |
145 |
bzr-0.0.4 2005-04-22
|
184
by mbp at sourcefrog
pychecker fixups |
146 |
|
196
by mbp at sourcefrog
selected-file diff |
147 |
ENHANCEMENTS:
|
184
by mbp at sourcefrog
pychecker fixups |
148 |
|
244
by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote |
149 |
* 'bzr diff' optionally takes a list of files to diff. Still a bit |
196
by mbp at sourcefrog
selected-file diff |
150 |
basic. Patch from QuantumG.
|
184
by mbp at sourcefrog
pychecker fixups |
151 |
|
242
by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows |
152 |
* More default ignore patterns.
|
153 |
||
244
by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote |
154 |
* New 'bzr log --verbose' shows a list of files changed in the |
155 |
changeset. Patch from Sebastian Cote.
|
|
156 |
||
261
by Martin Pool
- auto-rollover of .bzr.log |
157 |
* Roll over ~/.bzr.log if it gets too large.
|
158 |
||
272
by Martin Pool
- Add command aliases |
159 |
* Command abbreviations 'ci', 'st', 'stat', '?' based on a patch |
160 |
by Jason Diamon.
|
|
161 |
||
273
by Martin Pool
- New 'bzr help commands' |
162 |
* New 'bzr help commands' based on a patch from Denys Duchier. |
163 |
||
235
by mbp at sourcefrog
update NEWS |
164 |
|
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
165 |
CHANGES:
|
166 |
||
167 |
* User email is determined by looking at $BZREMAIL or ~/.bzr.email
|
|
168 |
or $EMAIL. All are decoded by the locale preferred encoding.
|
|
169 |
If none of these are present user@hostname is used. The host's |
|
170 |
fully-qualified name is not used because that tends to fail when |
|
171 |
there are DNS problems. |
|
172 |
||
255
by Martin Pool
- New whoami command |
173 |
* New 'bzr whoami' command instead of username user-email. |
174 |
||
252
by Martin Pool
- Don't use host fqdn for default user name, because DNS tends |
175 |
|
235
by mbp at sourcefrog
update NEWS |
176 |
BUG FIXES: |
177 |
||
178 |
* Make commit safe for hardlinked bzr trees. |
|
179 |
||
245
by mbp at sourcefrog
- control files always in utf-8-unix format |
180 |
* Some Unicode/locale fixes. |
181 |
||
278
by Martin Pool
- Better workaround for trailing newlines in diffs |
182 |
* Partial workaround for difflib.unified_diff not handling |
183 |
trailing newlines properly. |
|
184 |
||
235
by mbp at sourcefrog
update NEWS |
185 |
|
232
by mbp at sourcefrog
Allow docstrings for help to be in PEP0257 format. |
186 |
INTERNAL: |
187 |
||
188 |
* Allow docstrings for help to be in PEP0257 format. Patch from |
|
189 |
Matt Brubeck. |
|
190 |
||
235
by mbp at sourcefrog
update NEWS |
191 |
* More tests in test.sh. |
192 |
||
239
by mbp at sourcefrog
- remove profiler temporary file when done |
193 |
* Write profile data to a temporary file not into working |
194 |
directory and delete it when done. |
|
238
by mbp at sourcefrog
- Don't put profiling temp file in current directory |
195 |
|
257
by Martin Pool
- Write less startup junk to .bzr.log |
196 |
* Smaller .bzr.log with process ids. |
197 |
||
184
by mbp at sourcefrog
pychecker fixups |
198 |
|
242
by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows |
199 |
PORTABILITY: |
200 |
||
261
by Martin Pool
- auto-rollover of .bzr.log |
201 |
* Fix opening of ~/.bzr.log on Windows. Patch from Andrew |
202 |
Bennetts. |
|
242
by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows |
203 |
|
262
by Martin Pool
- gen_file_id: break the file on either / or \ when looking |
204 |
* Some improvements in handling paths on Windows, based on a patch |
205 |
from QuantumG. |
|
206 |
||
242
by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows |
207 |
|
181
by mbp at sourcefrog
prepare for 0.0.3 release |
208 |
bzr-0.0.3 2005-04-06 |
155
by mbp at sourcefrog
add new explicit RootEntry to inventory (in-core only) |
209 |
|
156
by mbp at sourcefrog
new "directories" command |
210 |
ENHANCEMENTS: |
211 |
||
212 |
* New "directories" internal command lists versioned directories |
|
213 |
in the tree. |
|
214 |
||
159
by mbp at sourcefrog
bzr commit --help now works |
215 |
* Can now say "bzr commit --help". |
216 |
||
174
by mbp at sourcefrog
- New 'move' command; now separated out from rename |
217 |
* New "rename" command to rename one file to a different name |
218 |
and/or directory. |
|
219 |
||
220 |
* New "move" command to move one or more files into a different |
|
221 |
directory. |
|
168
by mbp at sourcefrog
new "rename" command |
222 |
|
164
by mbp at sourcefrog
new 'renames' command |
223 |
* New "renames" command lists files renamed since base revision. |
224 |
||
176
by mbp at sourcefrog
New cat command contributed by janmar. |
225 |
* New cat command contributed by janmar. |
226 |
||
165
by mbp at sourcefrog
- put .bzr.log in /home/mbp |
227 |
CHANGES: |
228 |
||
166
by mbp at sourcefrog
- Write .bzr.log in utf8 |
229 |
* .bzr.log is placed in $HOME (not pwd) and is always written in |
230 |
UTF-8. (Probably not a completely good long-term solution, but |
|
231 |
will do for now.) |
|
165
by mbp at sourcefrog
- put .bzr.log in /home/mbp |
232 |
|
162
by mbp at sourcefrog
workaround for python2.3 difflib bug |
233 |
PORTABILITY: |
234 |
||
235 |
* Workaround for difflib bug in Python 2.3 that causes an |
|
236 |
exception when comparing empty files. Reported by Erik Toubro |
|
237 |
Nielsen. |
|
163
by mbp at sourcefrog
merge win32 portability fixes |
238 |
|
165
by mbp at sourcefrog
- put .bzr.log in /home/mbp |
239 |
INTERNAL: |
240 |
||
241 |
* Refactored inventory storage to insert a root entry at the top. |
|
242 |
||
180
by mbp at sourcefrog
- mv command is gone, but renames seem to be working |
243 |
TESTING: |
244 |
||
169
by mbp at sourcefrog
Start of shell-based black-box testing in test.sh |
245 |
* Start of shell-based black-box testing in test.sh. |
246 |
||
163
by mbp at sourcefrog
merge win32 portability fixes |
247 |
|
248 |
bzr-0.0.2.1 |
|
249 |
||
250 |
PORTABILITY: |
|
251 |
||
252 |
* Win32 fixes from Steve Brown. |
|
253 |
||
254 |
||
181
by mbp at sourcefrog
prepare for 0.0.3 release |
255 |
bzr-0.0.2 "black cube" 2005-03-31 |
101
by mbp at sourcefrog
change default ignore list |
256 |
|
133
by mbp at sourcefrog
- new 'ignored' command |
257 |
ENHANCEMENTS: |
101
by mbp at sourcefrog
change default ignore list |
258 |
|
110
by mbp at sourcefrog
Add more patterns to default ignore list |
259 |
* Default ignore list extended (see bzrlib/__init__.py). |
101
by mbp at sourcefrog
change default ignore list |
260 |
|
102
by mbp at sourcefrog
- cache ignore list in Tree |
261 |
* Patterns in .bzrignore are now added to the default ignore list, |
262 |
rather than replacing it. |
|
263 |
||
146
by mbp at sourcefrog
match ignore patterns like ./config.h |
264 |
* Ignore list isn't reread for every file. |
102
by mbp at sourcefrog
- cache ignore list in Tree |
265 |
|
110
by mbp at sourcefrog
Add more patterns to default ignore list |
266 |
* More help topics.
|
267 |
||
118
by mbp at sourcefrog
Update news |
268 |
* Reinstate the 'bzr check' command to check invariants of the |
269 |
branch.
|
|
133
by mbp at sourcefrog
- new 'ignored' command |
270 |
|
135
by mbp at sourcefrog
Simple new 'deleted' command |
271 |
* New 'ignored' command lists which files are ignored and why; |
272 |
'deleted' lists files deleted in the current working tree. |
|
273 |
||
274 |
* Performance improvements.
|
|
137
by mbp at sourcefrog
new --profile option |
275 |
|
276 |
* New global --profile option.
|
|
146
by mbp at sourcefrog
match ignore patterns like ./config.h |
277 |
|
278 |
* Ignore patterns like './config.h' now correctly match files in |
|
163
by mbp at sourcefrog
merge win32 portability fixes |
279 |
the root directory only.
|
280 |
||
281 |
||
99
by mbp at sourcefrog
update for release 0.0.1 |
282 |
bzr-0.0.1 2005-03-26
|
72
by mbp at sourcefrog
- import a subset of elementtree for easier installation |
283 |
|
81
by mbp at sourcefrog
show space usage for various stores in the info command |
284 |
ENHANCEMENTS:
|
285 |
||
286 |
* More information from info command.
|
|
287 |
||
83
by mbp at sourcefrog
Can now say "bzr help COMMAND" for more detailed help |
288 |
* Can now say "bzr help COMMAND" for more detailed help.
|
289 |
||
92
by mbp at sourcefrog
more performance measurement |
290 |
* Less file flushing and faster performance when writing logs and
|
291 |
committing to stores.
|
|
292 |
||
96
by mbp at sourcefrog
with commit -v, show committed revision number |
293 |
* More useful verbose output from some commands.
|
294 |
||
93
by mbp at sourcefrog
Fix inverted display of 'R' and 'M' during 'commit -v' |
295 |
BUG FIXES:
|
296 |
||
297 |
* Fix inverted display of 'R' and 'M' during 'commit -v'. |
|
298 |
||
72
by mbp at sourcefrog
- import a subset of elementtree for easier installation |
299 |
PORTABILITY:
|
300 |
||
301 |
* Include a subset of ElementTree-1.2.20040618 to make
|
|
302 |
installation easier.
|
|
303 |
||
73
by mbp at sourcefrog
fix time.localtime call for python 2.3 |
304 |
* Fix time.localtime call to work with Python 2.3 (the minimum
|
305 |
supported).
|
|
306 |
||
307 |
||
71
by mbp at sourcefrog
Add NEWS file |
308 |
bzr-0.0.0.69 2005-03-22
|
309 |
||
310 |
ENHANCEMENTS:
|
|
311 |
||
312 |
* First public release.
|
|
313 |
||
314 |
* Storage of local versions: init, add, remove, rm, info, log,
|
|
315 |
diff, status, etc.
|