~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-17 23:35:18 UTC
  • mfrom: (1442.1.65)
  • Revision ID: robertc@robertcollins.net-20051017233518-6746654be564edde
Merge in more GPG work, and more Branch-api-shrinkage.

* Branch.remove has been moved to WorkingTree, which has also gained
  lock_read, lock_write and unlock methods for convenience. (Robert
  Collins)

* Two decorators, needs_read_lock and needs_write_lock have been added
  to the branch module. Use these to cause a function to run in a
  read or write lock respectively. (Robert Collins)

* Branch.open_containing now returns a tuple (Branch, relative-path),
  which allows direct access to the common case of 'get me this file
  from its branch'. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      Goffredo Baroncelli.
17
17
    
18
18
    * 'bzr check' now accepts -v for verbose reporting, and checks for
19
 
      ghosts in the branch.
 
19
      ghosts in the branch. (Robert Collins)
20
20
 
21
21
    * New command 're-sign' which will regenerate the gpg signature for 
22
 
      a revision.
 
22
      a revision. (Robert Collins)
23
23
 
24
24
    * If you set check_signatures=require for a path in 
25
25
      ~/.bazaar/branches.conf then bzr will invoke your
26
26
      gpg_signing_command (defaults to gpg) and record a digital signature
27
 
      of your commit.
 
27
      of your commit. (Robert Collins)
28
28
 
29
29
  TESTING:
30
30
 
31
31
    * The 'bzr selftest --pattern' option for has been removed, now 
32
32
      test specifiers on the command line can be simple strings, or 
33
 
      regexps, or both.
 
33
      regexps, or both. (Robert Collins)
34
34
 
35
35
    * Passing -v to selftest will now show the time each test took to 
36
36
      complete, which will aid in analysing performance regressions and
37
 
      related questions.
 
37
      related questions. (Robert Collins)
38
38
 
39
39
    * 'bzr selftest' runs all tests, even if one feels, unless '--one'
40
40
      is given.
69
69
      parameter, and if None is given will open the branch at basedir 
70
70
      implicitly. (Robert Collins)
71
71
 
 
72
    * Branch.remove has been moved to WorkingTree, which has also gained
 
73
      lock_read, lock_write and unlock methods for convenience. (Robert
 
74
      Collins)
 
75
 
 
76
    * Two decorators, needs_read_lock and needs_write_lock have been added
 
77
      to the branch module. Use these to cause a function to run in a
 
78
      read or write lock respectively. (Robert Collins)
 
79
 
 
80
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
81
      which allows direct access to the common case of 'get me this file
 
82
      from its branch'. (Robert Collins)
 
83
 
72
84
 
73
85
bzr 0.1.1 2005-10-12
74
86