/brz/remove-bazaar

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