~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-07-11 06:41:00 UTC
  • mfrom: (unknown (missing))
  • Revision ID: mbp@sourcefrog.net-20050711064100-c2eb947e0212f487
- patch from john to search for matching commits

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.5  NOT RELEASED YET
 
1
DEVELOPMENT HEAD
 
2
 
 
3
  NEW FEATURES:
 
4
 
 
5
    * Python plugins, automatically loaded from the directories on
 
6
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
7
 
 
8
    * New 'bzr mkdir' command.
 
9
 
 
10
    * Commit mesage is fetched from an editor if not given on the
 
11
      command line; patch from Torsten Marek.
 
12
 
 
13
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
14
      FOO.
 
15
 
 
16
  CHANGES:
 
17
 
 
18
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
19
      everything under a top directory rather than dumping it into the
 
20
      current directory.   This can be overridden with the ``--root`` 
 
21
      option.  Patch from William Dod� and John Meinel.
 
22
 
 
23
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
24
      replacing ``bzr check --update``.
 
25
 
 
26
    * Files within store directories are no longer marked readonly on
 
27
      disk.
 
28
 
 
29
    * Changed ``bzr log`` output to a more compact form suggested by
 
30
      John A Meinel.  Old format is available with the ``--long`` or
 
31
      ``-l`` option, patched by William Dodé.
 
32
 
 
33
    * By default the commit command refuses to record a revision with
 
34
      no changes unless the ``--unchanged`` option is given.
 
35
 
 
36
 
 
37
bzr-0.0.5  2005-06-15
 
38
  
 
39
  CHANGES:
 
40
 
 
41
    * ``bzr`` with no command now shows help rather than giving an
 
42
      error.  Suggested by Michael Ellerman.
 
43
 
 
44
    * ``bzr status`` output format changed, because svn-style output
 
45
      doesn't really match the model of bzr.  Now files are grouped by
 
46
      status and can be shown with their IDs.  ``bzr status --all``
 
47
      shows all versioned files and unknown files but not ignored files.
 
48
 
 
49
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
50
      of the previous order.  The previous behaviour can be obtained
 
51
      with the ``--forward`` option.
 
52
        
 
53
    * ``bzr inventory`` by default shows only filenames, and also ids
 
54
      if ``--show-ids`` is given, in which case the id is the second
 
55
      field.
 
56
 
2
57
 
3
58
  ENHANCEMENTS:
4
59
 
5
60
    * New 'bzr whoami --email' option shows only the email component
6
61
      of the user identification, from Jo Vermeulen.
7
62
 
8
 
    * New 'bzr ignore PATTERN' command.
 
63
    * New ``bzr ignore PATTERN`` command.
9
64
 
10
65
    * Nicer error message for broken pipe, interrupt and similar
11
66
      conditions that don't indicate an internal error.
12
67
 
13
 
    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
 
68
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
14
69
 
15
70
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
16
71
      either read or write mode.
25
80
    * New option ``bzr commit --file`` to take a message from a file,
26
81
      suggested by LarstiQ.
27
82
 
28
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz Oler.
 
83
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
84
      Oler.  File may be in a branch other than the working directory.
 
85
 
 
86
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
87
      a filename.
 
88
 
 
89
    * Commands can now be defined by external programs or scripts
 
90
      in a directory on $BZRPATH.
 
91
 
 
92
    * New "stat cache" avoids reading the contents of files if they 
 
93
      haven't changed since the previous time.
 
94
 
 
95
    * If the Python interpreter is too old, try to find a better one
 
96
      or give an error.  Based on a patch from Fredrik Lundh.
 
97
 
 
98
    * New optional parameter ``bzr info [BRANCH]``.
 
99
 
 
100
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
101
 
 
102
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
103
      range; contributed by John A Meinel.
 
104
 
 
105
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
106
      options through to an external GNU diff.
 
107
 
 
108
    * New option ``bzr add --no-recurse`` to add a directory but not
 
109
      their contents.
 
110
 
 
111
    * ``bzr --version`` now shows more information if bzr is being run
 
112
      from a branch.
 
113
 
 
114
  
 
115
  BUG FIXES:
 
116
 
 
117
    * Fixed diff format so that added and removed files will be
 
118
      handled properly by patch.  Fix from Lalo Martins.
 
119
 
 
120
    * Various fixes for files whose names contain spaces or other
 
121
      metacharacters.
29
122
 
30
123
 
31
124
  TESTING:
40
133
    * testbzr also runs the internal tests, so the only command
41
134
      required to check is just ``./testbzr``.
42
135
 
 
136
    * testbzr requires python2.4, but can be used to test bzr running
 
137
      under a different version.
 
138
 
 
139
    * Tests added for many other changes in this release.
 
140
 
43
141
 
44
142
  INTERNAL:
45
143
 
60
158
 
61
159
    * bzrlib.open_tracefile() takes a tracefilename parameter.
62
160
 
 
161
    * New AtomicFile class.
 
162
 
 
163
    * New developer commands ``added``, ``modified``.
 
164
 
 
165
 
 
166
  PORTABILITY:
 
167
 
 
168
    * Cope on Windows on python2.3 by using the weaker random seed.
 
169
      2.4 is now only recommended.
 
170
 
 
171
 
63
172
bzr-0.0.4  2005-04-22
64
173
 
65
174
  ENHANCEMENTS: