~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-06-27 06:25:30 UTC
  • Revision ID: mbp@sourcefrog.net-20050627062530-0002d5c96b0ed3c1
- note bzr log changes

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
  CHANGES:
 
14
 
 
15
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
16
      replacing ``bzr check --update``.
 
17
 
 
18
    * Files within store directories are no longer marked readonly on
 
19
      disk.
 
20
 
 
21
    * Changed ``bzr log`` output to a more compact form suggested by
 
22
      John A Meinel.
 
23
 
 
24
 
 
25
bzr-0.0.5  2005-06-15
2
26
  
3
27
  CHANGES:
4
28
 
10
34
      status and can be shown with their IDs.  ``bzr status --all``
11
35
      shows all versioned files and unknown files but not ignored files.
12
36
 
 
37
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
38
      of the previous order.  The previous behaviour can be obtained
 
39
      with the ``--forward`` option.
 
40
        
 
41
    * ``bzr inventory`` by default shows only filenames, and also ids
 
42
      if ``--show-ids`` is given, in which case the id is the second
 
43
      field.
 
44
 
13
45
 
14
46
  ENHANCEMENTS:
15
47
 
21
53
    * Nicer error message for broken pipe, interrupt and similar
22
54
      conditions that don't indicate an internal error.
23
55
 
24
 
    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
 
56
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
25
57
 
26
58
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
27
59
      either read or write mode.
53
85
 
54
86
    * New optional parameter ``bzr info [BRANCH]``.
55
87
 
 
88
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
89
 
 
90
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
91
      range; contributed by John A Meinel.
 
92
 
 
93
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
94
      options through to an external GNU diff.
 
95
 
 
96
    * New option ``bzr add --no-recurse`` to add a directory but not
 
97
      their contents.
 
98
 
 
99
    * ``bzr --version`` now shows more information if bzr is being run
 
100
      from a branch.
 
101
 
56
102
  
57
103
  BUG FIXES:
58
104
 
59
105
    * Fixed diff format so that added and removed files will be
60
106
      handled properly by patch.  Fix from Lalo Martins.
61
107
 
 
108
    * Various fixes for files whose names contain spaces or other
 
109
      metacharacters.
 
110
 
62
111
 
63
112
  TESTING:
64
113
 
72
121
    * testbzr also runs the internal tests, so the only command
73
122
      required to check is just ``./testbzr``.
74
123
 
 
124
    * testbzr requires python2.4, but can be used to test bzr running
 
125
      under a different version.
 
126
 
 
127
    * Tests added for many other changes in this release.
 
128
 
75
129
 
76
130
  INTERNAL:
77
131