~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-09-22 06:19:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050922061933-4b71d0f1e205b153
- keep track of number of checked revisions

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
 
1
development head
 
2
 
 
3
  INTERNALS:
 
4
 
 
5
    * Refactor xml packing/unpacking.
 
6
 
 
7
    * Improved 'fetch' code for pulling revisions from one branch into
 
8
      another (used by pull, merged, etc.)
 
9
 
 
10
 
 
11
  CHANGES:
 
12
 
 
13
    * New tree format based on weave files, called version 5.
 
14
 
 
15
 
 
16
  API:
 
17
 
 
18
    * New method-object style interface for Commit() and Fetch().
 
19
 
 
20
    * Renamed Branch.last_patch() to Branch.last_revision(), since
 
21
      we call them revisions not patches.
 
22
  
 
23
 
 
24
 
 
25
bzr-0.0.7 2005-09-02
 
26
 
 
27
  NEW FEATURES:
 
28
 
 
29
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
30
      help with intelligent shell completion.
 
31
 
 
32
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
33
 
 
34
 
 
35
  ENHANCEMENTS:
 
36
 
 
37
    * Much better merge support.
 
38
 
 
39
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
40
      (seven characters) which is the same as CVS and pleases things
 
41
      like emacs smerge.
 
42
 
 
43
 
 
44
  BUG FIXES:
 
45
 
 
46
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
47
      mention revisions that are not present.
 
48
 
 
49
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
50
 
 
51
    * Fix case of $EDITOR containing options for the editor.
 
52
 
 
53
    * Fix log -r refusing to show the last revision.
 
54
      (Patch from Goffredo Baroncelli.)
 
55
 
 
56
 
 
57
  CHANGES:
 
58
 
 
59
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
60
 
 
61
    * Externally provided commands on your $BZRPATH no longer need
 
62
      to recognize --bzr-usage to work properly, and can just handle
 
63
      --help themselves.
 
64
 
 
65
 
 
66
  LIBRARY:
 
67
 
 
68
    * Changed trace messages to go through the standard logging
 
69
      framework, so that they can more easily be redirected by
 
70
      libraries.
 
71
 
 
72
 
 
73
 
 
74
bzr-0.0.6 2005-08-18
2
75
 
3
76
  NEW FEATURES:
4
77
 
12
85
 
13
86
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
14
87
      FOO.
 
88
      
 
89
    * ``bzr add`` with no arguments adds everything under the current directory.
 
90
 
 
91
    * ``bzr mv`` does move or rename depending on its arguments, like
 
92
      the Unix command.
 
93
 
 
94
    * ``bzr missing`` command shows a summary of the differences
 
95
      between two trees.  (Merged from John Arbash-Meinel.)
 
96
 
 
97
    * An email address for commits to a particular tree can be
 
98
      specified by putting it into .bzr/email within a branch.  (Based
 
99
      on a patch from Heikki Paajanen.)
 
100
 
 
101
 
 
102
  ENHANCEMENTS:
 
103
 
 
104
    * Faster working tree operations.
 
105
 
15
106
 
16
107
  CHANGES:
17
108
 
 
109
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
110
      python package, so that they can be installed by the setup
 
111
      script without clashing with anything already existing on the
 
112
      system.  (Contributed by Gustavo Niemeyer.)
 
113
 
 
114
    * Moved plugins directory to bzrlib/, so that there's a standard
 
115
      plugin directory which is not only installed with bzr itself but
 
116
      is also available when using bzr from the development tree.
 
117
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
118
      standard plugins directory.
 
119
 
18
120
    * When exporting to a tarball with ``bzr export --format tgz``, put 
19
121
      everything under a top directory rather than dumping it into the
20
122
      current directory.   This can be overridden with the ``--root`` 
21
 
      option.  Patch from William Dod� and John Meinel.
 
123
      option.  Patch from William Dodé and John Meinel.
22
124
 
23
125
    * New ``bzr upgrade`` command to upgrade the format of a branch,
24
126
      replacing ``bzr check --update``.
33
135
    * By default the commit command refuses to record a revision with
34
136
      no changes unless the ``--unchanged`` option is given.
35
137
 
 
138
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
139
      line options must come before the command name because they 
 
140
      affect what commands are available; all other options must come 
 
141
      after the command name because their interpretation depends on
 
142
      it.
 
143
 
 
144
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
145
 
 
146
    * Default log format is back to the long format; the compact one
 
147
      is available with ``--short``.
 
148
      
 
149
      
 
150
  BUG FIXES:
 
151
  
 
152
    * Fix bugs in committing only selected files or within a subdirectory.
 
153
 
36
154
 
37
155
bzr-0.0.5  2005-06-15
38
156