~bzr-pqm/bzr/bzr.dev

286 by Martin Pool
- New bzr whoami --email option
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
296 by Martin Pool
- better reports from testbzr when it fails
8
  TESTING:
9
297 by Martin Pool
- fix intentional testcase failure
10
    * Converted black-box test suites from Bourne shell into Python.
11
      Various structural improvements to the tests.
12
13
280 by Martin Pool
Prepare for 0.0.4 release
14
bzr-0.0.4  2005-04-22
184 by mbp at sourcefrog
pychecker fixups
15
196 by mbp at sourcefrog
selected-file diff
16
  ENHANCEMENTS:
184 by mbp at sourcefrog
pychecker fixups
17
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
18
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
196 by mbp at sourcefrog
selected-file diff
19
      basic.  Patch from QuantumG.
184 by mbp at sourcefrog
pychecker fixups
20
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
21
    * More default ignore patterns.
22
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
23
    * New 'bzr log --verbose' shows a list of files changed in the
24
      changeset.  Patch from Sebastian Cote.
25
261 by Martin Pool
- auto-rollover of .bzr.log
26
    * Roll over ~/.bzr.log if it gets too large.
27
272 by Martin Pool
- Add command aliases
28
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
29
      by Jason Diamon.
30
273 by Martin Pool
- New 'bzr help commands'
31
    * New 'bzr help commands' based on a patch from Denys Duchier.
32
235 by mbp at sourcefrog
update NEWS
33
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
34
  CHANGES:
35
36
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
37
      or $EMAIL.  All are decoded by the locale preferred encoding.
38
      If none of these are present user@hostname is used.  The host's
39
      fully-qualified name is not used because that tends to fail when
40
      there are DNS problems.
41
255 by Martin Pool
- New whoami command
42
    * New 'bzr whoami' command instead of username user-email.
43
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
44
235 by mbp at sourcefrog
update NEWS
45
  BUG FIXES: 
46
47
    * Make commit safe for hardlinked bzr trees.
48
245 by mbp at sourcefrog
- control files always in utf-8-unix format
49
    * Some Unicode/locale fixes.
50
278 by Martin Pool
- Better workaround for trailing newlines in diffs
51
    * Partial workaround for difflib.unified_diff not handling
52
      trailing newlines properly.
53
235 by mbp at sourcefrog
update NEWS
54
232 by mbp at sourcefrog
Allow docstrings for help to be in PEP0257 format.
55
  INTERNAL:
56
57
    * Allow docstrings for help to be in PEP0257 format.  Patch from
58
      Matt Brubeck.
59
235 by mbp at sourcefrog
update NEWS
60
    * More tests in test.sh.
61
239 by mbp at sourcefrog
- remove profiler temporary file when done
62
    * Write profile data to a temporary file not into working
63
      directory and delete it when done.
238 by mbp at sourcefrog
- Don't put profiling temp file in current directory
64
257 by Martin Pool
- Write less startup junk to .bzr.log
65
    * Smaller .bzr.log with process ids.
66
184 by mbp at sourcefrog
pychecker fixups
67
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
68
  PORTABILITY:
69
261 by Martin Pool
- auto-rollover of .bzr.log
70
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
71
      Bennetts.
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
72
262 by Martin Pool
- gen_file_id: break the file on either / or \ when looking
73
    * Some improvements in handling paths on Windows, based on a patch
74
      from QuantumG.
75
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
76
181 by mbp at sourcefrog
prepare for 0.0.3 release
77
bzr-0.0.3  2005-04-06
155 by mbp at sourcefrog
add new explicit RootEntry to inventory (in-core only)
78
156 by mbp at sourcefrog
new "directories" command
79
  ENHANCEMENTS:
80
81
    * New "directories" internal command lists versioned directories
82
      in the tree.
83
159 by mbp at sourcefrog
bzr commit --help now works
84
    * Can now say "bzr commit --help".
85
174 by mbp at sourcefrog
- New 'move' command; now separated out from rename
86
    * New "rename" command to rename one file to a different name
87
      and/or directory.
88
89
    * New "move" command to move one or more files into a different
90
      directory.
168 by mbp at sourcefrog
new "rename" command
91
164 by mbp at sourcefrog
new 'renames' command
92
    * New "renames" command lists files renamed since base revision.
93
176 by mbp at sourcefrog
New cat command contributed by janmar.
94
    * New cat command contributed by janmar.
95
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
96
  CHANGES:
97
166 by mbp at sourcefrog
- Write .bzr.log in utf8
98
    * .bzr.log is placed in $HOME (not pwd) and is always written in
99
      UTF-8.  (Probably not a completely good long-term solution, but
100
      will do for now.)
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
101
162 by mbp at sourcefrog
workaround for python2.3 difflib bug
102
  PORTABILITY:
103
104
    * Workaround for difflib bug in Python 2.3 that causes an
105
      exception when comparing empty files.  Reported by Erik Toubro
106
      Nielsen.
163 by mbp at sourcefrog
merge win32 portability fixes
107
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
108
  INTERNAL:
109
110
    * Refactored inventory storage to insert a root entry at the top.
111
180 by mbp at sourcefrog
- mv command is gone, but renames seem to be working
112
  TESTING:
113
169 by mbp at sourcefrog
Start of shell-based black-box testing in test.sh
114
    * Start of shell-based black-box testing in test.sh.
115
163 by mbp at sourcefrog
merge win32 portability fixes
116
117
bzr-0.0.2.1
118
119
  PORTABILITY:
120
121
    * Win32 fixes from Steve Brown.
122
123
181 by mbp at sourcefrog
prepare for 0.0.3 release
124
bzr-0.0.2  "black cube"  2005-03-31
101 by mbp at sourcefrog
change default ignore list
125
133 by mbp at sourcefrog
- new 'ignored' command
126
  ENHANCEMENTS:
101 by mbp at sourcefrog
change default ignore list
127
110 by mbp at sourcefrog
Add more patterns to default ignore list
128
    * Default ignore list extended (see bzrlib/__init__.py).
101 by mbp at sourcefrog
change default ignore list
129
102 by mbp at sourcefrog
- cache ignore list in Tree
130
    * Patterns in .bzrignore are now added to the default ignore list,
131
      rather than replacing it.
132
146 by mbp at sourcefrog
match ignore patterns like ./config.h
133
    * Ignore list isn't reread for every file.
102 by mbp at sourcefrog
- cache ignore list in Tree
134
110 by mbp at sourcefrog
Add more patterns to default ignore list
135
    * More help topics.
136
118 by mbp at sourcefrog
Update news
137
    * Reinstate the 'bzr check' command to check invariants of the
138
      branch.
133 by mbp at sourcefrog
- new 'ignored' command
139
135 by mbp at sourcefrog
Simple new 'deleted' command
140
    * New 'ignored' command lists which files are ignored and why;
141
      'deleted' lists files deleted in the current working tree.
142
143
    * Performance improvements.
137 by mbp at sourcefrog
new --profile option
144
145
    * New global --profile option.
146 by mbp at sourcefrog
match ignore patterns like ./config.h
146
    
147
    * Ignore patterns like './config.h' now correctly match files in
163 by mbp at sourcefrog
merge win32 portability fixes
148
      the root directory only.
149
150
99 by mbp at sourcefrog
update for release 0.0.1
151
bzr-0.0.1  2005-03-26
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
152
81 by mbp at sourcefrog
show space usage for various stores in the info command
153
  ENHANCEMENTS:
154
155
    * More information from info command.
156
83 by mbp at sourcefrog
Can now say "bzr help COMMAND" for more detailed help
157
    * Can now say "bzr help COMMAND" for more detailed help.
158
92 by mbp at sourcefrog
more performance measurement
159
    * Less file flushing and faster performance when writing logs and
160
      committing to stores.
161
96 by mbp at sourcefrog
with commit -v, show committed revision number
162
    * More useful verbose output from some commands.
163
93 by mbp at sourcefrog
Fix inverted display of 'R' and 'M' during 'commit -v'
164
  BUG FIXES:
165
166
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
167
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
168
  PORTABILITY:
169
170
    * Include a subset of ElementTree-1.2.20040618 to make
171
      installation easier.
172
73 by mbp at sourcefrog
fix time.localtime call for python 2.3
173
    * Fix time.localtime call to work with Python 2.3 (the minimum
174
      supported).
175
176
71 by mbp at sourcefrog
Add NEWS file
177
bzr-0.0.0.69  2005-03-22
178
179
  ENHANCEMENTS:
180
181
    * First public release.
182
183
    * Storage of local versions: init, add, remove, rm, info, log,
184
      diff, status, etc.