~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: mbp at sourcefrog
  • Date: 2005-03-25 01:16:46 UTC
  • Revision ID: mbp@sourcefrog.net-20050325011646-e3f0af5d6bd1190c
- update version string
- put it in bzrlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
2
 
 
3
 
  NEW FEATURES:
4
 
 
5
 
    * Python plugins, automatically loaded from the directories on
6
 
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
7
 
 
8
 
    * New 'bzr mkdir' command.
9
 
 
10
 
    * Commit mesage is fetched from an editor if not given on the
11
 
      command line; patch from Torsten Marek.
12
 
 
13
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
14
 
      FOO.
15
 
 
16
 
  CHANGES:
17
 
 
18
 
    * When exporting to a tarball with ``bzr export --format tgz``, put 
19
 
      everything under a top directory rather than dumping it into the
20
 
      current directory.   This can be overridden with the ``--root`` 
21
 
      option.  Patch from William Dod� and John Meinel.
22
 
 
23
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
24
 
      replacing ``bzr check --update``.
25
 
 
26
 
    * Files within store directories are no longer marked readonly on
27
 
      disk.
28
 
 
29
 
    * Changed ``bzr log`` output to a more compact form suggested by
30
 
      John A Meinel.  Old format is available with the ``--long`` or
31
 
      ``-l`` option, patched by William Dodé.
32
 
 
33
 
    * By default the commit command refuses to record a revision with
34
 
      no changes unless the ``--unchanged`` option is given.
35
 
 
36
 
 
37
 
bzr-0.0.5  2005-06-15
38
 
  
39
 
  CHANGES:
40
 
 
41
 
    * ``bzr`` with no command now shows help rather than giving an
42
 
      error.  Suggested by Michael Ellerman.
43
 
 
44
 
    * ``bzr status`` output format changed, because svn-style output
45
 
      doesn't really match the model of bzr.  Now files are grouped by
46
 
      status and can be shown with their IDs.  ``bzr status --all``
47
 
      shows all versioned files and unknown files but not ignored files.
48
 
 
49
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
50
 
      of the previous order.  The previous behaviour can be obtained
51
 
      with the ``--forward`` option.
52
 
        
53
 
    * ``bzr inventory`` by default shows only filenames, and also ids
54
 
      if ``--show-ids`` is given, in which case the id is the second
55
 
      field.
56
 
 
57
 
 
58
 
  ENHANCEMENTS:
59
 
 
60
 
    * New 'bzr whoami --email' option shows only the email component
61
 
      of the user identification, from Jo Vermeulen.
62
 
 
63
 
    * New ``bzr ignore PATTERN`` command.
64
 
 
65
 
    * Nicer error message for broken pipe, interrupt and similar
66
 
      conditions that don't indicate an internal error.
67
 
 
68
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
69
 
 
70
 
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
71
 
      either read or write mode.
72
 
 
73
 
    * New option ``bzr log --show-ids`` shows revision and file ids.
74
 
 
75
 
    * New usage ``bzr log FILENAME`` shows only revisions that
76
 
      affected that file.
77
 
 
78
 
    * Changed format for describing changes in ``bzr log -v``.
79
 
 
80
 
    * New option ``bzr commit --file`` to take a message from a file,
81
 
      suggested by LarstiQ.
82
 
 
83
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
84
 
      Oler.  File may be in a branch other than the working directory.
85
 
 
86
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
87
 
      a filename.
88
 
 
89
 
    * Commands can now be defined by external programs or scripts
90
 
      in a directory on $BZRPATH.
91
 
 
92
 
    * New "stat cache" avoids reading the contents of files if they 
93
 
      haven't changed since the previous time.
94
 
 
95
 
    * If the Python interpreter is too old, try to find a better one
96
 
      or give an error.  Based on a patch from Fredrik Lundh.
97
 
 
98
 
    * New optional parameter ``bzr info [BRANCH]``.
99
 
 
100
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
101
 
 
102
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
103
 
      range; contributed by John A Meinel.
104
 
 
105
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
106
 
      options through to an external GNU diff.
107
 
 
108
 
    * New option ``bzr add --no-recurse`` to add a directory but not
109
 
      their contents.
110
 
 
111
 
    * ``bzr --version`` now shows more information if bzr is being run
112
 
      from a branch.
113
 
 
114
 
  
115
 
  BUG FIXES:
116
 
 
117
 
    * Fixed diff format so that added and removed files will be
118
 
      handled properly by patch.  Fix from Lalo Martins.
119
 
 
120
 
    * Various fixes for files whose names contain spaces or other
121
 
      metacharacters.
122
 
 
123
 
 
124
 
  TESTING:
125
 
 
126
 
    * Converted black-box test suites from Bourne shell into Python;
127
 
      now run using ``./testbzr``.  Various structural improvements to
128
 
      the tests.
129
 
 
130
 
    * testbzr by default runs the version of bzr found in the same
131
 
      directory as the tests, or the one given as the first parameter.
132
 
 
133
 
    * testbzr also runs the internal tests, so the only command
134
 
      required to check is just ``./testbzr``.
135
 
 
136
 
    * testbzr requires python2.4, but can be used to test bzr running
137
 
      under a different version.
138
 
 
139
 
    * Tests added for many other changes in this release.
140
 
 
141
 
 
142
 
  INTERNAL:
143
 
 
144
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
145
 
 
146
 
    * Refactor command functions into Command objects based on HCT by
147
 
      Scott James Remnant.
148
 
 
149
 
    * Better help messages for many commands.
150
 
 
151
 
    * Expose bzrlib.open_tracefile() to start the tracefile; until
152
 
      this is called trace messages are just discarded.
153
 
 
154
 
    * New internal function find_touching_revisions() and hidden
155
 
      command touching-revisions trace the changes to a given file.
156
 
 
157
 
    * Simpler and faster compare_inventories() function.
158
 
 
159
 
    * bzrlib.open_tracefile() takes a tracefilename parameter.
160
 
 
161
 
    * New AtomicFile class.
162
 
 
163
 
    * New developer commands ``added``, ``modified``.
164
 
 
165
 
 
166
 
  PORTABILITY:
167
 
 
168
 
    * Cope on Windows on python2.3 by using the weaker random seed.
169
 
      2.4 is now only recommended.
170
 
 
171
 
 
172
 
bzr-0.0.4  2005-04-22
173
 
 
174
 
  ENHANCEMENTS:
175
 
 
176
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
177
 
      basic.  Patch from QuantumG.
178
 
 
179
 
    * More default ignore patterns.
180
 
 
181
 
    * New 'bzr log --verbose' shows a list of files changed in the
182
 
      changeset.  Patch from Sebastian Cote.
183
 
 
184
 
    * Roll over ~/.bzr.log if it gets too large.
185
 
 
186
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
187
 
      by Jason Diamon.
188
 
 
189
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
190
 
 
191
 
 
192
 
  CHANGES:
193
 
 
194
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
195
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
196
 
      If none of these are present user@hostname is used.  The host's
197
 
      fully-qualified name is not used because that tends to fail when
198
 
      there are DNS problems.
199
 
 
200
 
    * New 'bzr whoami' command instead of username user-email.
201
 
 
202
 
 
203
 
  BUG FIXES: 
204
 
 
205
 
    * Make commit safe for hardlinked bzr trees.
206
 
 
207
 
    * Some Unicode/locale fixes.
208
 
 
209
 
    * Partial workaround for difflib.unified_diff not handling
210
 
      trailing newlines properly.
211
 
 
212
 
 
213
 
  INTERNAL:
214
 
 
215
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
216
 
      Matt Brubeck.
217
 
 
218
 
    * More tests in test.sh.
219
 
 
220
 
    * Write profile data to a temporary file not into working
221
 
      directory and delete it when done.
222
 
 
223
 
    * Smaller .bzr.log with process ids.
224
 
 
225
 
 
226
 
  PORTABILITY:
227
 
 
228
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
229
 
      Bennetts.
230
 
 
231
 
    * Some improvements in handling paths on Windows, based on a patch
232
 
      from QuantumG.
233
 
 
234
 
 
235
 
bzr-0.0.3  2005-04-06
236
 
 
237
 
  ENHANCEMENTS:
238
 
 
239
 
    * New "directories" internal command lists versioned directories
240
 
      in the tree.
241
 
 
242
 
    * Can now say "bzr commit --help".
243
 
 
244
 
    * New "rename" command to rename one file to a different name
245
 
      and/or directory.
246
 
 
247
 
    * New "move" command to move one or more files into a different
248
 
      directory.
249
 
 
250
 
    * New "renames" command lists files renamed since base revision.
251
 
 
252
 
    * New cat command contributed by janmar.
253
 
 
254
 
  CHANGES:
255
 
 
256
 
    * .bzr.log is placed in $HOME (not pwd) and is always written in
257
 
      UTF-8.  (Probably not a completely good long-term solution, but
258
 
      will do for now.)
259
 
 
260
 
  PORTABILITY:
261
 
 
262
 
    * Workaround for difflib bug in Python 2.3 that causes an
263
 
      exception when comparing empty files.  Reported by Erik Toubro
264
 
      Nielsen.
265
 
 
266
 
  INTERNAL:
267
 
 
268
 
    * Refactored inventory storage to insert a root entry at the top.
269
 
 
270
 
  TESTING:
271
 
 
272
 
    * Start of shell-based black-box testing in test.sh.
273
 
 
274
 
 
275
 
bzr-0.0.2.1
276
 
 
277
 
  PORTABILITY:
278
 
 
279
 
    * Win32 fixes from Steve Brown.
280
 
 
281
 
 
282
 
bzr-0.0.2  "black cube"  2005-03-31
283
 
 
284
 
  ENHANCEMENTS:
285
 
 
286
 
    * Default ignore list extended (see bzrlib/__init__.py).
287
 
 
288
 
    * Patterns in .bzrignore are now added to the default ignore list,
289
 
      rather than replacing it.
290
 
 
291
 
    * Ignore list isn't reread for every file.
292
 
 
293
 
    * More help topics.
294
 
 
295
 
    * Reinstate the 'bzr check' command to check invariants of the
296
 
      branch.
297
 
 
298
 
    * New 'ignored' command lists which files are ignored and why;
299
 
      'deleted' lists files deleted in the current working tree.
300
 
 
301
 
    * Performance improvements.
302
 
 
303
 
    * New global --profile option.
304
 
    
305
 
    * Ignore patterns like './config.h' now correctly match files in
306
 
      the root directory only.
307
 
 
308
 
 
309
 
bzr-0.0.1  2005-03-26
 
1
bzr-0.0.1  NOT RELEASED YET
310
2
 
311
3
  ENHANCEMENTS:
312
4
 
314
6
 
315
7
    * Can now say "bzr help COMMAND" for more detailed help.
316
8
 
317
 
    * Less file flushing and faster performance when writing logs and
318
 
      committing to stores.
319
 
 
320
 
    * More useful verbose output from some commands.
321
 
 
322
 
  BUG FIXES:
323
 
 
324
 
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
325
 
 
326
9
  PORTABILITY:
327
10
 
328
11
    * Include a subset of ElementTree-1.2.20040618 to make
332
15
      supported).
333
16
 
334
17
 
 
18
 
335
19
bzr-0.0.0.69  2005-03-22
336
20
 
337
21
  ENHANCEMENTS: