~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-06-22 09:35:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050622093524-b15e2d374c2ae6ea
- move standard plugins from contrib/plugins to just ./plugins

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