/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-04-28 09:03:12 UTC
  • Revision ID: mbp@sourcefrog.net-20050428090312-1b10892485860ef3
- fix intentional testcase failure
- log line numbers from test case
- test whoami command

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
  TESTING:
 
9
 
 
10
    * Converted black-box test suites from Bourne shell into Python.
 
11
      Various structural improvements to the tests.
 
12
 
 
13
 
 
14
bzr-0.0.4  2005-04-22
 
15
 
 
16
  ENHANCEMENTS:
 
17
 
 
18
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
19
      basic.  Patch from QuantumG.
 
20
 
 
21
    * More default ignore patterns.
 
22
 
 
23
    * New 'bzr log --verbose' shows a list of files changed in the
 
24
      changeset.  Patch from Sebastian Cote.
 
25
 
 
26
    * Roll over ~/.bzr.log if it gets too large.
 
27
 
 
28
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
29
      by Jason Diamon.
 
30
 
 
31
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
32
 
 
33
 
 
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
 
 
42
    * New 'bzr whoami' command instead of username user-email.
 
43
 
 
44
 
 
45
  BUG FIXES: 
 
46
 
 
47
    * Make commit safe for hardlinked bzr trees.
 
48
 
 
49
    * Some Unicode/locale fixes.
 
50
 
 
51
    * Partial workaround for difflib.unified_diff not handling
 
52
      trailing newlines properly.
 
53
 
 
54
 
 
55
  INTERNAL:
 
56
 
 
57
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
58
      Matt Brubeck.
 
59
 
 
60
    * More tests in test.sh.
 
61
 
 
62
    * Write profile data to a temporary file not into working
 
63
      directory and delete it when done.
 
64
 
 
65
    * Smaller .bzr.log with process ids.
 
66
 
 
67
 
 
68
  PORTABILITY:
 
69
 
 
70
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
71
      Bennetts.
 
72
 
 
73
    * Some improvements in handling paths on Windows, based on a patch
 
74
      from QuantumG.
 
75
 
 
76
 
 
77
bzr-0.0.3  2005-04-06
 
78
 
 
79
  ENHANCEMENTS:
 
80
 
 
81
    * New "directories" internal command lists versioned directories
 
82
      in the tree.
 
83
 
 
84
    * Can now say "bzr commit --help".
 
85
 
 
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.
 
91
 
 
92
    * New "renames" command lists files renamed since base revision.
 
93
 
 
94
    * New cat command contributed by janmar.
 
95
 
 
96
  CHANGES:
 
97
 
 
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.)
 
101
 
 
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.
 
107
 
 
108
  INTERNAL:
 
109
 
 
110
    * Refactored inventory storage to insert a root entry at the top.
 
111
 
 
112
  TESTING:
 
113
 
 
114
    * Start of shell-based black-box testing in test.sh.
 
115
 
 
116
 
 
117
bzr-0.0.2.1
 
118
 
 
119
  PORTABILITY:
 
120
 
 
121
    * Win32 fixes from Steve Brown.
 
122
 
 
123
 
 
124
bzr-0.0.2  "black cube"  2005-03-31
 
125
 
 
126
  ENHANCEMENTS:
 
127
 
 
128
    * Default ignore list extended (see bzrlib/__init__.py).
 
129
 
 
130
    * Patterns in .bzrignore are now added to the default ignore list,
 
131
      rather than replacing it.
 
132
 
 
133
    * Ignore list isn't reread for every file.
 
134
 
 
135
    * More help topics.
 
136
 
 
137
    * Reinstate the 'bzr check' command to check invariants of the
 
138
      branch.
 
139
 
 
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.
 
144
 
 
145
    * New global --profile option.
 
146
    
 
147
    * Ignore patterns like './config.h' now correctly match files in
 
148
      the root directory only.
 
149
 
 
150
 
 
151
bzr-0.0.1  2005-03-26
 
152
 
 
153
  ENHANCEMENTS:
 
154
 
 
155
    * More information from info command.
 
156
 
 
157
    * Can now say "bzr help COMMAND" for more detailed help.
 
158
 
 
159
    * Less file flushing and faster performance when writing logs and
 
160
      committing to stores.
 
161
 
 
162
    * More useful verbose output from some commands.
 
163
 
 
164
  BUG FIXES:
 
165
 
 
166
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
167
 
 
168
  PORTABILITY:
 
169
 
 
170
    * Include a subset of ElementTree-1.2.20040618 to make
 
171
      installation easier.
 
172
 
 
173
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
174
      supported).
 
175
 
 
176
 
 
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.