~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2005-10-17 20:17:55 UTC
  • mfrom: (1185.16.59)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1474.
  • Revision ID: abentley@panoramicfeedback.com-20051017201755-48ed4650792388ab
Merged latest from Martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
UNRELEASED CHANGES
2
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * The config directory is now ~/.bazaar, and there is a single file 
 
6
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
7
      (Robert Collins)
 
8
 
 
9
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
 
10
      has been added that suppresses all output.
 
11
 
 
12
    * Improved zsh completion support in contrib/zsh, from Clint
 
13
      Adams.
 
14
 
 
15
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
 
16
      Goffredo Baroncelli.
 
17
    
 
18
    * 'bzr check' now accepts -v for verbose reporting, and checks for
 
19
      ghosts in the branch.
 
20
 
 
21
  TESTING:
 
22
 
 
23
    * The 'bzr selftest --pattern' option for has been removed, now 
 
24
      test specifiers on the command line can be simple strings, or 
 
25
      regexps, or both.
 
26
 
 
27
    * Passing -v to selftest will now show the time each test took to 
 
28
      complete, which will aid in analysing performance regressions and
 
29
      related questions.
 
30
 
 
31
    * 'bzr selftest' runs all tests, even if one feels, unless '--one'
 
32
      is given.
 
33
 
3
34
  INTERNALS:
4
35
 
5
36
    * New 'manifest' command and concept for making gpg-signatures 
7
38
      representation.
8
39
 
9
40
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
41
      (Robert Collins)
 
42
 
 
43
    * Improved command line option definitions allowing explanations
 
44
      for individual options, among other things.  Contributed by 
 
45
      Magnus Therning.
 
46
 
 
47
    * Config options have moved from bzrlib.osutils to bzrlib.config.
10
48
      Configuration is now done via the config.Config interface:
11
49
      Depending on whether you have a Branch, a Location or no information
12
50
      available, construct a *Config, and use its signature_checking,
16
54
      they are made available for other plugins to use. You should not 
17
55
      import other plugins during the __init__ of your plugin though, as 
18
56
      no ordering is guaranteed, and the plugins directory is not on the
19
 
      python path.
20
 
 
21
 
 
22
 
  IMPROVEMENTS:
23
 
 
24
 
    * The config directory is now ~/.bazaar, and there is a single file 
25
 
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
26
 
      (Robert Collins)
27
 
 
28
 
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
29
 
      has been added that suppresses all output.
30
 
 
31
 
    * 'bzr check' now accepts -v for verbose reporting, and checks for
32
 
      ghosts in the branch.
33
 
 
34
 
 
35
 
  INTERNALS:
36
 
 
37
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
38
 
      (Robert Collins)
39
 
 
40
 
  TESTING:
41
 
 
42
 
    * The --pattern option has been removed, now test specifiers on the
43
 
      command line can be simple strings, or regexps, or both.
44
 
 
45
 
    * Passing -v to selftest will now show the time each test took to 
46
 
      complete, which will aid in analysing performance regressions and
47
 
      related questions.
48
 
 
 
57
      python path. (Robert Collins)
 
58
 
 
59
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
60
      no longer takes an inventory, rather it takes an option branch
 
61
      parameter, and if None is given will open the branch at basedir 
 
62
      implicitly. (Robert Collins)
49
63
 
50
64
bzr 0.1.1 2005-10-12
51
65