~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-05-17 06:56:16 UTC
  • Revision ID: mbp@sourcefrog.net-20050517065616-6f23381d6184a8aa
- add space for un-merged patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
1
bzr-0.0.5  NOT RELEASED YET
38
2
  
39
3
  CHANGES:
40
4
 
46
10
      status and can be shown with their IDs.  ``bzr status --all``
47
11
      shows all versioned files and unknown files but not ignored files.
48
12
 
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
 
 
57
13
 
58
14
  ENHANCEMENTS:
59
15
 
65
21
    * Nicer error message for broken pipe, interrupt and similar
66
22
      conditions that don't indicate an internal error.
67
23
 
68
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
24
    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
69
25
 
70
26
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
71
27
      either read or write mode.
99
55
 
100
56
    * New form ``bzr commit SELECTED`` to commit only selected files.
101
57
 
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
58
  
115
59
  BUG FIXES:
116
60
 
117
61
    * Fixed diff format so that added and removed files will be
118
62
      handled properly by patch.  Fix from Lalo Martins.
119
63
 
120
 
    * Various fixes for files whose names contain spaces or other
121
 
      metacharacters.
122
 
 
123
64
 
124
65
  TESTING:
125
66
 
136
77
    * testbzr requires python2.4, but can be used to test bzr running
137
78
      under a different version.
138
79
 
139
 
    * Tests added for many other changes in this release.
140
 
 
141
80
 
142
81
  INTERNAL:
143
82