~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: mbp at sourcefrog
  • Date: 2005-03-22 00:37:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050322003717-7b1d4a370c237846
lift out tracefile creation code

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.5  NOT RELEASED YET
2
 
 
3
 
  ENHANCEMENTS:
4
 
 
5
 
    * New 'bzr whoami --email' option shows only the email component
6
 
      of the user identification, from Jo Vermeulen.
7
 
 
8
 
    * New 'bzr ignore PATTERN' command.
9
 
 
10
 
    * Nicer error message for broken pipe, interrupt and similar
11
 
      conditions that don't indicate an internal error.
12
 
 
13
 
  TESTING:
14
 
 
15
 
    * Converted black-box test suites from Bourne shell into Python.
16
 
      Various structural improvements to the tests.
17
 
 
18
 
  INTERNAL:
19
 
 
20
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
21
 
 
22
 
    * Refactor command functions into Command objects based on
23
 
      mango-sorbet by Scott James Remnant.
24
 
 
25
 
    * Better help messages for many commands.
26
 
 
27
 
 
28
 
bzr-0.0.4  2005-04-22
29
 
 
30
 
  ENHANCEMENTS:
31
 
 
32
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
33
 
      basic.  Patch from QuantumG.
34
 
 
35
 
    * More default ignore patterns.
36
 
 
37
 
    * New 'bzr log --verbose' shows a list of files changed in the
38
 
      changeset.  Patch from Sebastian Cote.
39
 
 
40
 
    * Roll over ~/.bzr.log if it gets too large.
41
 
 
42
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
43
 
      by Jason Diamon.
44
 
 
45
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
46
 
 
47
 
 
48
 
  CHANGES:
49
 
 
50
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
51
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
52
 
      If none of these are present user@hostname is used.  The host's
53
 
      fully-qualified name is not used because that tends to fail when
54
 
      there are DNS problems.
55
 
 
56
 
    * New 'bzr whoami' command instead of username user-email.
57
 
 
58
 
 
59
 
  BUG FIXES: 
60
 
 
61
 
    * Make commit safe for hardlinked bzr trees.
62
 
 
63
 
    * Some Unicode/locale fixes.
64
 
 
65
 
    * Partial workaround for difflib.unified_diff not handling
66
 
      trailing newlines properly.
67
 
 
68
 
 
69
 
  INTERNAL:
70
 
 
71
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
72
 
      Matt Brubeck.
73
 
 
74
 
    * More tests in test.sh.
75
 
 
76
 
    * Write profile data to a temporary file not into working
77
 
      directory and delete it when done.
78
 
 
79
 
    * Smaller .bzr.log with process ids.
80
 
 
81
 
 
82
 
  PORTABILITY:
83
 
 
84
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
85
 
      Bennetts.
86
 
 
87
 
    * Some improvements in handling paths on Windows, based on a patch
88
 
      from QuantumG.
89
 
 
90
 
 
91
 
bzr-0.0.3  2005-04-06
92
 
 
93
 
  ENHANCEMENTS:
94
 
 
95
 
    * New "directories" internal command lists versioned directories
96
 
      in the tree.
97
 
 
98
 
    * Can now say "bzr commit --help".
99
 
 
100
 
    * New "rename" command to rename one file to a different name
101
 
      and/or directory.
102
 
 
103
 
    * New "move" command to move one or more files into a different
104
 
      directory.
105
 
 
106
 
    * New "renames" command lists files renamed since base revision.
107
 
 
108
 
    * New cat command contributed by janmar.
109
 
 
110
 
  CHANGES:
111
 
 
112
 
    * .bzr.log is placed in $HOME (not pwd) and is always written in
113
 
      UTF-8.  (Probably not a completely good long-term solution, but
114
 
      will do for now.)
115
 
 
116
 
  PORTABILITY:
117
 
 
118
 
    * Workaround for difflib bug in Python 2.3 that causes an
119
 
      exception when comparing empty files.  Reported by Erik Toubro
120
 
      Nielsen.
121
 
 
122
 
  INTERNAL:
123
 
 
124
 
    * Refactored inventory storage to insert a root entry at the top.
125
 
 
126
 
  TESTING:
127
 
 
128
 
    * Start of shell-based black-box testing in test.sh.
129
 
 
130
 
 
131
 
bzr-0.0.2.1
132
 
 
133
 
  PORTABILITY:
134
 
 
135
 
    * Win32 fixes from Steve Brown.
136
 
 
137
 
 
138
 
bzr-0.0.2  "black cube"  2005-03-31
139
 
 
140
 
  ENHANCEMENTS:
141
 
 
142
 
    * Default ignore list extended (see bzrlib/__init__.py).
143
 
 
144
 
    * Patterns in .bzrignore are now added to the default ignore list,
145
 
      rather than replacing it.
146
 
 
147
 
    * Ignore list isn't reread for every file.
148
 
 
149
 
    * More help topics.
150
 
 
151
 
    * Reinstate the 'bzr check' command to check invariants of the
152
 
      branch.
153
 
 
154
 
    * New 'ignored' command lists which files are ignored and why;
155
 
      'deleted' lists files deleted in the current working tree.
156
 
 
157
 
    * Performance improvements.
158
 
 
159
 
    * New global --profile option.
160
 
    
161
 
    * Ignore patterns like './config.h' now correctly match files in
162
 
      the root directory only.
163
 
 
164
 
 
165
 
bzr-0.0.1  2005-03-26
166
 
 
167
 
  ENHANCEMENTS:
168
 
 
169
 
    * More information from info command.
170
 
 
171
 
    * Can now say "bzr help COMMAND" for more detailed help.
172
 
 
173
 
    * Less file flushing and faster performance when writing logs and
174
 
      committing to stores.
175
 
 
176
 
    * More useful verbose output from some commands.
177
 
 
178
 
  BUG FIXES:
179
 
 
180
 
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
181
 
 
182
 
  PORTABILITY:
183
 
 
184
 
    * Include a subset of ElementTree-1.2.20040618 to make
185
 
      installation easier.
186
 
 
187
 
    * Fix time.localtime call to work with Python 2.3 (the minimum
188
 
      supported).
189
 
 
190
 
 
191
 
bzr-0.0.0.69  2005-03-22
192
 
 
193
 
  ENHANCEMENTS:
194
 
 
195
 
    * First public release.
196
 
 
197
 
    * Storage of local versions: init, add, remove, rm, info, log,
198
 
      diff, status, etc.