~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: mbp at sourcefrog
  • Date: 2005-04-14 23:43:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050414234300-57f6e8b8514287e4
- factor out locale.getpreferredencoding()
- fix problems with EMAIL not being defined

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr-0.0.4  NOT RELEASED YET
 
2
 
 
3
  ENHANCEMENTS:
 
4
 
 
5
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
6
      basic.  Patch from QuantumG.
 
7
 
 
8
    * More default ignore patterns.
 
9
 
 
10
    * New 'bzr log --verbose' shows a list of files changed in the
 
11
      changeset.  Patch from Sebastian Cote.
 
12
 
 
13
 
 
14
  BUG FIXES: 
 
15
 
 
16
    * Make commit safe for hardlinked bzr trees.
 
17
 
 
18
    * Some Unicode/locale fixes.
 
19
 
 
20
 
 
21
  INTERNAL:
 
22
 
 
23
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
24
      Matt Brubeck.
 
25
 
 
26
    * More tests in test.sh.
 
27
 
 
28
    * Write profile data to a temporary file not into working
 
29
      directory and delete it when done.
 
30
 
 
31
 
 
32
  PORTABILITY:
 
33
 
 
34
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew Bennetts.
 
35
 
 
36
 
 
37
bzr-0.0.3  2005-04-06
 
38
 
 
39
  ENHANCEMENTS:
 
40
 
 
41
    * New "directories" internal command lists versioned directories
 
42
      in the tree.
 
43
 
 
44
    * Can now say "bzr commit --help".
 
45
 
 
46
    * New "rename" command to rename one file to a different name
 
47
      and/or directory.
 
48
 
 
49
    * New "move" command to move one or more files into a different
 
50
      directory.
 
51
 
 
52
    * New "renames" command lists files renamed since base revision.
 
53
 
 
54
    * New cat command contributed by janmar.
 
55
 
 
56
  CHANGES:
 
57
 
 
58
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
59
      UTF-8.  (Probably not a completely good long-term solution, but
 
60
      will do for now.)
 
61
 
 
62
  PORTABILITY:
 
63
 
 
64
    * Workaround for difflib bug in Python 2.3 that causes an
 
65
      exception when comparing empty files.  Reported by Erik Toubro
 
66
      Nielsen.
 
67
 
 
68
  INTERNAL:
 
69
 
 
70
    * Refactored inventory storage to insert a root entry at the top.
 
71
 
 
72
  TESTING:
 
73
 
 
74
    * Start of shell-based black-box testing in test.sh.
 
75
 
 
76
 
 
77
bzr-0.0.2.1
 
78
 
 
79
  PORTABILITY:
 
80
 
 
81
    * Win32 fixes from Steve Brown.
 
82
 
 
83
 
 
84
bzr-0.0.2  "black cube"  2005-03-31
 
85
 
 
86
  ENHANCEMENTS:
 
87
 
 
88
    * Default ignore list extended (see bzrlib/__init__.py).
 
89
 
 
90
    * Patterns in .bzrignore are now added to the default ignore list,
 
91
      rather than replacing it.
 
92
 
 
93
    * Ignore list isn't reread for every file.
 
94
 
 
95
    * More help topics.
 
96
 
 
97
    * Reinstate the 'bzr check' command to check invariants of the
 
98
      branch.
 
99
 
 
100
    * New 'ignored' command lists which files are ignored and why;
 
101
      'deleted' lists files deleted in the current working tree.
 
102
 
 
103
    * Performance improvements.
 
104
 
 
105
    * New global --profile option.
 
106
    
 
107
    * Ignore patterns like './config.h' now correctly match files in
 
108
      the root directory only.
 
109
 
 
110
 
 
111
bzr-0.0.1  2005-03-26
 
112
 
 
113
  ENHANCEMENTS:
 
114
 
 
115
    * More information from info command.
 
116
 
 
117
    * Can now say "bzr help COMMAND" for more detailed help.
 
118
 
 
119
    * Less file flushing and faster performance when writing logs and
 
120
      committing to stores.
 
121
 
 
122
    * More useful verbose output from some commands.
 
123
 
 
124
  BUG FIXES:
 
125
 
 
126
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
127
 
 
128
  PORTABILITY:
 
129
 
 
130
    * Include a subset of ElementTree-1.2.20040618 to make
 
131
      installation easier.
 
132
 
 
133
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
134
      supported).
 
135
 
 
136
 
 
137
bzr-0.0.0.69  2005-03-22
 
138
 
 
139
  ENHANCEMENTS:
 
140
 
 
141
    * First public release.
 
142
 
 
143
    * Storage of local versions: init, add, remove, rm, info, log,
 
144
      diff, status, etc.