~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-11 13:47:06 UTC
  • mfrom: (5051.3.16 use-branch-open)
  • Revision ID: pqm@pqm.ubuntu.com-20100311134706-kaerqhx3lf7xn6rh
(Jelmer) Pass colocated branch names further down the call stack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  ``bzrlib.tests.test_server``.
31
31
  (Vincent Ladeuil)
32
32
 
 
33
* ``BranchReferenceFormat.initialize()`` now takes an optional name argument
 
34
  as its second parameter, for consistency with the initialize() method of
 
35
  other formats. (Jelmer Vernooij)
 
36
 
33
37
New Features
34
38
************
35
39
 
127
131
API Changes
128
132
***********
129
133
 
 
134
* ``BranchFormat.initialize`` now takes an optional ``name`` of the colocated 
 
135
  branch to create. (Jelmer Vernooij)
 
136
 
 
137
* ``BzrDir.get_branch_transport`` now takes an optional ``name`` of the 
 
138
  colocated branch to open. (Jelmer Vernooij)
 
139
 
130
140
* Added ``bzrlib.osutils.set_signal_handler``, a convenience function that
131
141
  can set a signal handler and call ``signal.siginterrupt(signum,
132
142
  False)`` for it, if the platform and Python version supports it.