~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-18 12:53:07 UTC
  • mfrom: (1442.1.70)
  • Revision ID: robertc@robertcollins.net-20051018125307-730e47c1a034cb6f
Merge in various improvements to pull, testing and configuration.

* 'bzr pull' now accepts '--clobber' which will discard local changes
  and make this branch identical to the source branch. (Robert Collins)

* There is a new method for TestCaseInTempDir, assertFileEqual, which
  will check that a given content is equal to the content of the named
  file. (Robert Collins)

* 'pull' has been factored out of the command as WorkingTree.pull().
  A new option to WorkingTree.pull has been added, clobber, which will
  ignore diverged history and pull anyway.
  (Robert Collins)

* config.Config has a 'get_user_option' call that accepts an option name.
  This will be looked up in branches.conf and bazaar.conf as normal.
  It is intended that this be used by plugins to support options -
  options of built in programs should have specific methods on the config.
  (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
      gpg_signing_command (defaults to gpg) and record a digital signature
27
27
      of your commit. (Robert Collins)
28
28
 
 
29
    * 'bzr pull' now accepts '--clobber' which will discard local changes
 
30
      and make this branch identical to the source branch. (Robert Collins)
 
31
 
29
32
  TESTING:
30
33
 
31
34
    * The 'bzr selftest --pattern' option for has been removed, now 
39
42
    * 'bzr selftest' runs all tests, even if one feels, unless '--one'
40
43
      is given.
41
44
 
 
45
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
 
46
      will check that a given content is equal to the content of the named
 
47
      file.
 
48
 
42
49
  INTERNALS:
43
50
 
44
51
    * New 'manifest' command and concept for making gpg-signatures 
81
88
      which allows direct access to the common case of 'get me this file
82
89
      from its branch'. (Robert Collins)
83
90
 
 
91
    * 'pull' has been factored out of the command as WorkingTree.pull().
 
92
      A new option to WorkingTree.pull has been added, clobber, which will
 
93
      ignore diverged history and pull anyway.
 
94
      (Robert Collins)
 
95
 
 
96
    * config.Config has a 'get_user_option' call that accepts an option name.
 
97
      This will be looked up in branches.conf and bazaar.conf as normal.
 
98
      It is intended that this be used by plugins to support options - 
 
99
      options of built in programs should have specific methods on the config.
 
100
      (Robert Collins)
 
101
 
84
102
 
85
103
bzr 0.1.1 2005-10-12
86
104