~bzr-pqm/bzr/bzr.dev

1185.1.45 by Robert Collins
Apply Harald Meland's fix to lock with lockf for NFS compatability
1
DEVELOPMENT HEAD
2
3
  BUG FIXES:
4
  
5
    * bzr-man.py has been updated to work again. Contributed by
6
      Rob Weir.
7
8
    * Locking is now done with fcntl.lockf which works with NFS
9
      file systems. Contributed by Harald Meland.
10
11
  IMPROVEMENTS:
12
1185.1.46 by Robert Collins
Aarons branch --basis patch
13
    * 'branch' now accepts a --basis parameter which will take advantage
14
      of local history when making a new branch. This allows faster 
15
      branching of remote branches. Contributed by Aaron Bentley.
16
1391 by Robert Collins
merge from integration
17
    * New tree format based on weave files, called version 5.
18
      Existing branches can be upgraded to this format using 
19
      'bzr upgrade'.
20
1185.1.45 by Robert Collins
Apply Harald Meland's fix to lock with lockf for NFS compatability
21
  INTERNALS:
22
1391 by Robert Collins
merge from integration
23
    * Test case failures have the exception printed after the log for your
24
      viewing pleasure.
25
1185.1.45 by Robert Collins
Apply Harald Meland's fix to lock with lockf for NFS compatability
26
      
1185.9.1 by Martin Pool
- prepare for 0.0.9 release
27
bzr 0.0.9 2005-09-23
28
29
  BUG FIXES:
30
31
    * Fixed "branch -r" option.
32
33
    * Fix remote access to branches containing non-compressed history.
34
      (Robert Collins).
35
36
    * Better reliability of http server tests.  (John Arbash-Meinel)
37
38
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
39
   
1185.1.45 by Robert Collins
Apply Harald Meland's fix to lock with lockf for NFS compatability
40
    * Various minor bug in windows support have been fixed, largely in the
41
      test suite. Contributed by Alexander Belchenko.
42
1185.1.35 by Robert Collins
Heikki Paajanen's status -r patch
43
  IMPROVEMENTS:
44
1391 by Robert Collins
merge from integration
45
    * Status now accepts a -r argument to give status between chosen
1185.1.35 by Robert Collins
Heikki Paajanen's status -r patch
46
      revisions. Contributed by Heikki Paajanen.
47
1185.1.39 by Robert Collins
Robey Pointers before: namespace to clear up usage of dates in revision parameters
48
    * Revision arguments no longer use +/-/= to control ranges, instead
49
      there is a 'before' namespace, which limits the successive namespace.
50
      For example '$ bzr log -r date:yesterday..before:date:today' will
51
      select everything from yesterday and before today. Contributed by
52
      Robey Pointer
53
1185.1.40 by Robert Collins
Merge what applied of Alexander Belchenko's win32 patch.
54
    * There is now a bzr.bat file created by distutils when building on 
55
      Windows. Contributed by Alexander Belchenko.
1388 by Martin Pool
- update NEWS files
56
1185.1.41 by Robert Collins
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid
57
  INTERNALS:
58
1390 by Robert Collins
pair programming worx... merge integration and weave
59
    * Removed uuid() as it was unused.
1181 by Martin Pool
- add test for deserialization from a canned XML inventory
60
1241 by Martin Pool
- rename last_patch to last_revision
61
    * Improved 'fetch' code for pulling revisions from one branch into
62
      another (used by pull, merged, etc.)
63
64
1185.7.3 by Martin Pool
- prepare for 0.0.8 release
65
bzr 0.0.8 2005-09-20
1181 by Martin Pool
- add test for deserialization from a canned XML inventory
66
1185.3.3 by Martin Pool
- patch from mpe to automatically add parent directories
67
  IMPROVEMENTS:
68
69
    * Adding a file whose parent directory is not versioned will
70
      implicitly add the parent, and so on up to the root. This means
71
      you should never need to explictly add a directory, they'll just
72
      get added when you add a file in the directory.  Contributed by
73
      Michael Ellerman.
74
1185.3.12 by Martin Pool
- ignore .DS_Store by default
75
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
76
      Nir Soffer.
77
1185.1.30 by Robert Collins
Accept and tweak David Clymers BZREDITOR support patch
78
    * If you set BZR_EDITOR in the environment, it is checked in
79
      preference to EDITOR and the config file for the interactive commit
80
      editing program. Related to this is a bugfix where a missing program
81
      set in EDITOR would cause editing to fail, now the fallback program
82
      for the operating system is still tried.
83
1185.1.32 by Robert Collins
Merge John Meinels patch to support trees with fifo/socket/block files present in the tree
84
    * Files that are not directories/symlinks/regular files will no longer
85
      cause bzr to fail, it will just ignore them by default. You cannot add
86
      them to the tree though - they are not versionable.
87
1185.3.3 by Martin Pool
- patch from mpe to automatically add parent directories
88
1181 by Martin Pool
- add test for deserialization from a canned XML inventory
89
  INTERNALS:
90
91
    * Refactor xml packing/unpacking.
92
1185.1.4 by Martin Pool
- fix _find_remote_branch to avoid strange error for nonexistent branch
93
  BUG FIXES: 
94
95
    * Fixed 'bzr mv' by Ollie Rutherfurd.
96
97
    * Fixed strange error when trying to access a nonexistent http
98
      branch.
99
1185.3.6 by Martin Pool
- if statcache can't be read, consider that it needs to be rewritten
100
    * Make sure that the hashcache gets written out if it can't be
101
      read.
102
1185.1.4 by Martin Pool
- fix _find_remote_branch to avoid strange error for nonexistent branch
103
104
  PORTABILITY:
105
106
    * Various Windows fixes from Ollie Rutherfurd.
107
1185.7.1 by Martin Pool
- Quieten warnings about locking; patch from Matt Lavin.
108
    * Quieten warnings about locking; patch from Matt Lavin.
1241 by Martin Pool
- rename last_patch to last_revision
109
1181 by Martin Pool
- add test for deserialization from a canned XML inventory
110
1175 by Martin Pool
- make 0.0.7 release
111
bzr-0.0.7 2005-09-02
1091 by Martin Pool
- new shell-complete command to help zsh completion
112
113
  NEW FEATURES:
114
115
    * ``bzr shell-complete`` command contributed by Clint Adams to
116
      help with intelligent shell completion.
117
1105 by Martin Pool
- expose 'find-merge-base' as a new expert command,
118
    * New expert command ``bzr find-merge-base`` for debugging merges.
119
1091 by Martin Pool
- new shell-complete command to help zsh completion
120
1145 by Martin Pool
- additional fix for bzr plugins
121
  ENHANCEMENTS:
122
123
    * Much better merge support.
124
1148 by Martin Pool
- change conflict markers to suit smerge, etc
125
    * merge3 conflicts are now reported with markers like '<<<<<<<'
126
      (seven characters) which is the same as CVS and pleases things
127
      like emacs smerge.
128
1145 by Martin Pool
- additional fix for bzr plugins
129
1092 by Martin Pool
- fix bug where bzr upgrade aborts when trying to fix trees that mention revisions
130
  BUG FIXES:
131
132
    * ``bzr upgrade`` no longer fails when trying to fix trees that
133
      mention revisions that are not present.
134
1145 by Martin Pool
- additional fix for bzr plugins
135
    * Fixed bugs in listing plugins from ``bzr plugins``.
136
1168 by Martin Pool
- work properly when $EDITOR contains multiple words
137
    * Fix case of $EDITOR containing options for the editor.
138
1174 by Martin Pool
- fix off-by-one in 'bzr log -r'
139
    * Fix log -r refusing to show the last revision.
140
      (Patch from Goffredo Baroncelli.)
141
1092 by Martin Pool
- fix bug where bzr upgrade aborts when trying to fix trees that mention revisions
142
1138 by Martin Pool
- bzr log --show-ids includes parent ids
143
  CHANGES:
144
145
    * ``bzr log --show-ids`` shows the revision ids of all parents.
146
1174 by Martin Pool
- fix off-by-one in 'bzr log -r'
147
    * Externally provided commands on your $BZRPATH no longer need
148
      to recognize --bzr-usage to work properly, and can just handle
149
      --help themselves.
150
1138 by Martin Pool
- bzr log --show-ids includes parent ids
151
1097 by Martin Pool
- send trace messages out through python logging module
152
  LIBRARY:
153
154
    * Changed trace messages to go through the standard logging
155
      framework, so that they can more easily be redirected by
156
      libraries.
157
158
159
1086 by Martin Pool
prepare 0.0.6 release
160
bzr-0.0.6 2005-08-18
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
161
741 by Martin Pool
- default plugin dir is ~/.bzr.conf/plugins
162
  NEW FEATURES:
163
164
    * Python plugins, automatically loaded from the directories on
165
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
166
742 by Martin Pool
- new mkdir command
167
    * New 'bzr mkdir' command.
168
763 by Martin Pool
- Patch from Torsten Marek to take commit messages through an
169
    * Commit mesage is fetched from an editor if not given on the
170
      command line; patch from Torsten Marek.
171
900 by Martin Pool
- patch from john to search for matching commits
172
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
173
      FOO.
971 by Martin Pool
- update news
174
      
175
    * ``bzr add`` with no arguments adds everything under the current directory.
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
176
177
    * ``bzr mv`` does move or rename depending on its arguments, like
178
      the Unix command.
179
180
    * ``bzr missing`` command shows a summary of the differences
181
      between two trees.  (Merged from John Arbash-Meinel.)
182
1074 by Martin Pool
- check for email address in BRANCH_ROOT/.bzr/email, so you can
183
    * An email address for commits to a particular tree can be
184
      specified by putting it into .bzr/email within a branch.  (Based
185
      on a patch from Heikki Paajanen.)
186
1094 by Martin Pool
- merge aaron's merge improvements 999..1008
187
971 by Martin Pool
- update news
188
  ENHANCEMENTS:
189
190
    * Faster working tree operations.
900 by Martin Pool
- patch from john to search for matching commits
191
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
192
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
193
  CHANGES:
194
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
195
    * 3rd-party modules shipped with bzr are copied within the bzrlib
196
      python package, so that they can be installed by the setup
197
      script without clashing with anything already existing on the
198
      system.  (Contributed by Gustavo Niemeyer.)
199
200
    * Moved plugins directory to bzrlib/, so that there's a standard
201
      plugin directory which is not only installed with bzr itself but
202
      is also available when using bzr from the development tree.
203
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
204
      standard plugins directory.
205
849 by Martin Pool
- Put files inside an exported tarball into a top-level directory rather than
206
    * When exporting to a tarball with ``bzr export --format tgz``, put 
207
      everything under a top directory rather than dumping it into the
208
      current directory.   This can be overridden with the ``--root`` 
971 by Martin Pool
- update news
209
      option.  Patch from William Dodé and John Meinel.
849 by Martin Pool
- Put files inside an exported tarball into a top-level directory rather than
210
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
211
    * New ``bzr upgrade`` command to upgrade the format of a branch,
212
      replacing ``bzr check --update``.
213
714 by Martin Pool
- files within stores are no longer made readonly
214
    * Files within store directories are no longer marked readonly on
215
      disk.
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
216
796 by Martin Pool
- note bzr log changes
217
    * Changed ``bzr log`` output to a more compact form suggested by
808 by Martin Pool
- Note new --long log options
218
      John A Meinel.  Old format is available with the ``--long`` or
219
      ``-l`` option, patched by William Dodé.
796 by Martin Pool
- note bzr log changes
220
885 by Martin Pool
- commit command refuses unless something is changed or --unchanged is given
221
    * By default the commit command refuses to record a revision with
222
      no changes unless the ``--unchanged`` option is given.
987 by Martin Pool
- note changes to command line parsing
223
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
224
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
225
      line options must come before the command name because they 
226
      affect what commands are available; all other options must come 
227
      after the command name because their interpretation depends on
228
      it.
229
230
    * ``branch`` and ``clone`` added as aliases for ``branch``.
231
232
    * Default log format is back to the long format; the compact one
233
      is available with ``--short``.
234
      
235
      
236
  BUG FIXES:
237
  
238
    * Fix bugs in committing only selected files or within a subdirectory.
239
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
240
692 by Martin Pool
0.0.5 release
241
bzr-0.0.5  2005-06-15
448 by Martin Pool
- bzr with no command now shows help, not just an error
242
  
243
  CHANGES:
244
245
    * ``bzr`` with no command now shows help rather than giving an
246
      error.  Suggested by Michael Ellerman.
247
465 by Martin Pool
- Move show_status() out of Branch into a new function in
248
    * ``bzr status`` output format changed, because svn-style output
249
      doesn't really match the model of bzr.  Now files are grouped by
250
      status and can be shown with their IDs.  ``bzr status --all``
251
      shows all versioned files and unknown files but not ignored files.
252
527 by Martin Pool
- refactor log command
253
    * ``bzr log`` runs from most-recent to least-recent, the reverse
545 by Martin Pool
- --forward option for log
254
      of the previous order.  The previous behaviour can be obtained
255
      with the ``--forward`` option.
588 by Martin Pool
- change inventory command to not show ids by default
256
        
257
    * ``bzr inventory`` by default shows only filenames, and also ids
258
      if ``--show-ids`` is given, in which case the id is the second
259
      field.
527 by Martin Pool
- refactor log command
260
286 by Martin Pool
- New bzr whoami --email option
261
262
  ENHANCEMENTS:
263
264
    * New 'bzr whoami --email' option shows only the email component
265
      of the user identification, from Jo Vermeulen.
266
420 by Martin Pool
Doc
267
    * New ``bzr ignore PATTERN`` command.
310 by Martin Pool
- new 'bzr ignored' command!
268
318 by Martin Pool
- better error message for Ctrl-c
269
    * Nicer error message for broken pipe, interrupt and similar
270
      conditions that don't indicate an internal error.
317 by Martin Pool
- better error message for broken pipe
271
618 by Martin Pool
- ignore .git files as well
272
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
348 by Martin Pool
- Add vim and RCS ignorefile patterns
273
353 by Martin Pool
- Per-branch locks in read and write modes.
274
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
275
      either read or write mode.
276
384 by Martin Pool
doc
277
    * New option ``bzr log --show-ids`` shows revision and file ids.
367 by Martin Pool
- New --show-ids option for bzr log
278
378 by Martin Pool
- New usage bzr log FILENAME
279
    * New usage ``bzr log FILENAME`` shows only revisions that
280
      affected that file.
281
379 by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees
282
    * Changed format for describing changes in ``bzr log -v``.
283
389 by Martin Pool
- new commit --file option!
284
    * New option ``bzr commit --file`` to take a message from a file,
285
      suggested by LarstiQ.
286
468 by Martin Pool
- Interpret arguments to bzr status
287
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
288
      Oler.  File may be in a branch other than the working directory.
404 by Martin Pool
- bzr status now optionally takes filenames to check
289
416 by Martin Pool
- bzr log and bzr root now accept an http URL
290
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
291
      a filename.
292
422 by Martin Pool
- External-command patch from mpe
293
    * Commands can now be defined by external programs or scripts
294
      in a directory on $BZRPATH.
295
440 by Martin Pool
doc
296
    * New "stat cache" avoids reading the contents of files if they 
297
      haven't changed since the previous time.
298
443 by Martin Pool
- Patch from Fredrik Lundh to check Python version and
299
    * If the Python interpreter is too old, try to find a better one
300
      or give an error.  Based on a patch from Fredrik Lundh.
301
472 by Martin Pool
- Optional branch parameter to info command
302
    * New optional parameter ``bzr info [BRANCH]``.
303
491 by Martin Pool
- Selective commit!
304
    * New form ``bzr commit SELECTED`` to commit only selected files.
305
567 by Martin Pool
- New form 'bzr log -r FROM:TO'
306
    * New form ``bzr log -r FROM:TO`` shows changes in selected
307
      range; contributed by John A Meinel.
308
571 by Martin Pool
- new --diff-options to pass options through to external
309
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
310
      options through to an external GNU diff.
311
594 by Martin Pool
- add --no-recurse option for add command
312
    * New option ``bzr add --no-recurse`` to add a directory but not
313
      their contents.
314
607 by Martin Pool
doc
315
    * ``bzr --version`` now shows more information if bzr is being run
316
      from a branch.
317
441 by Martin Pool
- Fix from Lalo for unidiff output of newly added
318
  
319
  BUG FIXES:
320
321
    * Fixed diff format so that added and removed files will be
322
      handled properly by patch.  Fix from Lalo Martins.
323
536 by Martin Pool
doc
324
    * Various fixes for files whose names contain spaces or other
325
      metacharacters.
326
404 by Martin Pool
- bzr status now optionally takes filenames to check
327
296 by Martin Pool
- better reports from testbzr when it fails
328
  TESTING:
329
340 by Martin Pool
- more testcase fixes
330
    * Converted black-box test suites from Bourne shell into Python;
331
      now run using ``./testbzr``.  Various structural improvements to
332
      the tests.
297 by Martin Pool
- fix intentional testcase failure
333
398 by Martin Pool
- testbzr finds the right version of bzr to test
334
    * testbzr by default runs the version of bzr found in the same
335
      directory as the tests, or the one given as the first parameter.
336
399 by Martin Pool
- testbzr also runs selftests
337
    * testbzr also runs the internal tests, so the only command
338
      required to check is just ``./testbzr``.
339
508 by Martin Pool
- new -p option for testbzr to use a different version of python
340
    * testbzr requires python2.4, but can be used to test bzr running
341
      under a different version.
342
594 by Martin Pool
- add --no-recurse option for add command
343
    * Tests added for many other changes in this release.
344
398 by Martin Pool
- testbzr finds the right version of bzr to test
345
314 by Martin Pool
- Update ElementTree to 1.2.6
346
  INTERNAL:
347
348
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
349
389 by Martin Pool
- new commit --file option!
350
    * Refactor command functions into Command objects based on HCT by
351
      Scott James Remnant.
329 by Martin Pool
- refactor command functions into command classes
352
353
    * Better help messages for many commands.
354
344 by Martin Pool
- It's not an error to use the library without
355
    * Expose bzrlib.open_tracefile() to start the tracefile; until
356
      this is called trace messages are just discarded.
357
375 by Martin Pool
- New command touching-revisions and function to trace
358
    * New internal function find_touching_revisions() and hidden
359
      command touching-revisions trace the changes to a given file.
297 by Martin Pool
- fix intentional testcase failure
360
379 by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees
361
    * Simpler and faster compare_inventories() function.
362
397 by Martin Pool
- open_tracefile takes a tracefilename parameter
363
    * bzrlib.open_tracefile() takes a tracefilename parameter.
364
409 by Martin Pool
- New AtomicFile class
365
    * New AtomicFile class.
440 by Martin Pool
doc
366
367
    * New developer commands ``added``, ``modified``.
368
444 by Martin Pool
- cope on platforms with no urandom feature
369
370
  PORTABILITY:
371
372
    * Cope on Windows on python2.3 by using the weaker random seed.
373
      2.4 is now only recommended.
374
375
280 by Martin Pool
Prepare for 0.0.4 release
376
bzr-0.0.4  2005-04-22
184 by mbp at sourcefrog
pychecker fixups
377
196 by mbp at sourcefrog
selected-file diff
378
  ENHANCEMENTS:
184 by mbp at sourcefrog
pychecker fixups
379
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
380
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
196 by mbp at sourcefrog
selected-file diff
381
      basic.  Patch from QuantumG.
184 by mbp at sourcefrog
pychecker fixups
382
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
383
    * More default ignore patterns.
384
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
385
    * New 'bzr log --verbose' shows a list of files changed in the
386
      changeset.  Patch from Sebastian Cote.
387
261 by Martin Pool
- auto-rollover of .bzr.log
388
    * Roll over ~/.bzr.log if it gets too large.
389
272 by Martin Pool
- Add command aliases
390
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
391
      by Jason Diamon.
392
273 by Martin Pool
- New 'bzr help commands'
393
    * New 'bzr help commands' based on a patch from Denys Duchier.
394
235 by mbp at sourcefrog
update NEWS
395
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
396
  CHANGES:
397
398
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
399
      or $EMAIL.  All are decoded by the locale preferred encoding.
400
      If none of these are present user@hostname is used.  The host's
401
      fully-qualified name is not used because that tends to fail when
402
      there are DNS problems.
403
255 by Martin Pool
- New whoami command
404
    * New 'bzr whoami' command instead of username user-email.
405
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
406
235 by mbp at sourcefrog
update NEWS
407
  BUG FIXES: 
408
409
    * Make commit safe for hardlinked bzr trees.
410
245 by mbp at sourcefrog
- control files always in utf-8-unix format
411
    * Some Unicode/locale fixes.
412
278 by Martin Pool
- Better workaround for trailing newlines in diffs
413
    * Partial workaround for difflib.unified_diff not handling
414
      trailing newlines properly.
415
235 by mbp at sourcefrog
update NEWS
416
232 by mbp at sourcefrog
Allow docstrings for help to be in PEP0257 format.
417
  INTERNAL:
418
419
    * Allow docstrings for help to be in PEP0257 format.  Patch from
420
      Matt Brubeck.
421
235 by mbp at sourcefrog
update NEWS
422
    * More tests in test.sh.
423
239 by mbp at sourcefrog
- remove profiler temporary file when done
424
    * Write profile data to a temporary file not into working
425
      directory and delete it when done.
238 by mbp at sourcefrog
- Don't put profiling temp file in current directory
426
257 by Martin Pool
- Write less startup junk to .bzr.log
427
    * Smaller .bzr.log with process ids.
428
184 by mbp at sourcefrog
pychecker fixups
429
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
430
  PORTABILITY:
431
261 by Martin Pool
- auto-rollover of .bzr.log
432
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
433
      Bennetts.
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
434
262 by Martin Pool
- gen_file_id: break the file on either / or \ when looking
435
    * Some improvements in handling paths on Windows, based on a patch
436
      from QuantumG.
437
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
438
181 by mbp at sourcefrog
prepare for 0.0.3 release
439
bzr-0.0.3  2005-04-06
155 by mbp at sourcefrog
add new explicit RootEntry to inventory (in-core only)
440
156 by mbp at sourcefrog
new "directories" command
441
  ENHANCEMENTS:
442
443
    * New "directories" internal command lists versioned directories
444
      in the tree.
445
159 by mbp at sourcefrog
bzr commit --help now works
446
    * Can now say "bzr commit --help".
447
174 by mbp at sourcefrog
- New 'move' command; now separated out from rename
448
    * New "rename" command to rename one file to a different name
449
      and/or directory.
450
451
    * New "move" command to move one or more files into a different
452
      directory.
168 by mbp at sourcefrog
new "rename" command
453
164 by mbp at sourcefrog
new 'renames' command
454
    * New "renames" command lists files renamed since base revision.
455
176 by mbp at sourcefrog
New cat command contributed by janmar.
456
    * New cat command contributed by janmar.
457
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
458
  CHANGES:
459
166 by mbp at sourcefrog
- Write .bzr.log in utf8
460
    * .bzr.log is placed in $HOME (not pwd) and is always written in
461
      UTF-8.  (Probably not a completely good long-term solution, but
462
      will do for now.)
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
463
162 by mbp at sourcefrog
workaround for python2.3 difflib bug
464
  PORTABILITY:
465
466
    * Workaround for difflib bug in Python 2.3 that causes an
467
      exception when comparing empty files.  Reported by Erik Toubro
468
      Nielsen.
163 by mbp at sourcefrog
merge win32 portability fixes
469
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
470
  INTERNAL:
471
472
    * Refactored inventory storage to insert a root entry at the top.
473
180 by mbp at sourcefrog
- mv command is gone, but renames seem to be working
474
  TESTING:
475
169 by mbp at sourcefrog
Start of shell-based black-box testing in test.sh
476
    * Start of shell-based black-box testing in test.sh.
477
163 by mbp at sourcefrog
merge win32 portability fixes
478
479
bzr-0.0.2.1
480
481
  PORTABILITY:
482
483
    * Win32 fixes from Steve Brown.
484
485
181 by mbp at sourcefrog
prepare for 0.0.3 release
486
bzr-0.0.2  "black cube"  2005-03-31
101 by mbp at sourcefrog
change default ignore list
487
133 by mbp at sourcefrog
- new 'ignored' command
488
  ENHANCEMENTS:
101 by mbp at sourcefrog
change default ignore list
489
110 by mbp at sourcefrog
Add more patterns to default ignore list
490
    * Default ignore list extended (see bzrlib/__init__.py).
101 by mbp at sourcefrog
change default ignore list
491
102 by mbp at sourcefrog
- cache ignore list in Tree
492
    * Patterns in .bzrignore are now added to the default ignore list,
493
      rather than replacing it.
494
146 by mbp at sourcefrog
match ignore patterns like ./config.h
495
    * Ignore list isn't reread for every file.
102 by mbp at sourcefrog
- cache ignore list in Tree
496
110 by mbp at sourcefrog
Add more patterns to default ignore list
497
    * More help topics.
498
118 by mbp at sourcefrog
Update news
499
    * Reinstate the 'bzr check' command to check invariants of the
500
      branch.
133 by mbp at sourcefrog
- new 'ignored' command
501
135 by mbp at sourcefrog
Simple new 'deleted' command
502
    * New 'ignored' command lists which files are ignored and why;
503
      'deleted' lists files deleted in the current working tree.
504
505
    * Performance improvements.
137 by mbp at sourcefrog
new --profile option
506
507
    * New global --profile option.
146 by mbp at sourcefrog
match ignore patterns like ./config.h
508
    
509
    * Ignore patterns like './config.h' now correctly match files in
163 by mbp at sourcefrog
merge win32 portability fixes
510
      the root directory only.
511
512
99 by mbp at sourcefrog
update for release 0.0.1
513
bzr-0.0.1  2005-03-26
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
514
81 by mbp at sourcefrog
show space usage for various stores in the info command
515
  ENHANCEMENTS:
516
517
    * More information from info command.
518
83 by mbp at sourcefrog
Can now say "bzr help COMMAND" for more detailed help
519
    * Can now say "bzr help COMMAND" for more detailed help.
520
92 by mbp at sourcefrog
more performance measurement
521
    * Less file flushing and faster performance when writing logs and
522
      committing to stores.
523
96 by mbp at sourcefrog
with commit -v, show committed revision number
524
    * More useful verbose output from some commands.
525
93 by mbp at sourcefrog
Fix inverted display of 'R' and 'M' during 'commit -v'
526
  BUG FIXES:
527
528
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
529
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
530
  PORTABILITY:
531
532
    * Include a subset of ElementTree-1.2.20040618 to make
533
      installation easier.
534
73 by mbp at sourcefrog
fix time.localtime call for python 2.3
535
    * Fix time.localtime call to work with Python 2.3 (the minimum
536
      supported).
537
538
71 by mbp at sourcefrog
Add NEWS file
539
bzr-0.0.0.69  2005-03-22
540
541
  ENHANCEMENTS:
542
543
    * First public release.
544
545
    * Storage of local versions: init, add, remove, rm, info, log,
546
      diff, status, etc.