/brz/remove-bazaar

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