~bzr-pqm/bzr/bzr.dev

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