~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2009-07-14 20:46:59 UTC
  • mfrom: (4536 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4538.
  • Revision ID: aaron@aaronbentley.com-20090714204659-86za047pt2ckstw3
Merged bzr.dev into commit-transform.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
.. contents:: List of Releases
7
7
   :depth: 1
8
8
 
 
9
 
9
10
In Development
10
11
##############
11
12
 
12
13
Compatibility Breaks
13
14
********************
14
15
 
 
16
New Features
 
17
************
 
18
 
 
19
* ``merge --interactive`` applies a user-selected portion of the merge.  The UI
 
20
  is similar to ``shelve``.  (Aaron Bentley)
 
21
 
 
22
Bug Fixes
 
23
*********
 
24
 
 
25
* BranchBuilder now accepts timezone to avoid test failures in countries far
 
26
  from GMT. (Vincent Ladeuil, #397716)
 
27
 
 
28
Improvements
 
29
************
 
30
 
 
31
Documentation
 
32
*************
 
33
 
 
34
* Added Bazaar 2.0 Upgrade Guide. (Ian Clatworthy)
 
35
 
 
36
API Changes
 
37
***********
 
38
 
 
39
Internals
 
40
*********
 
41
 
 
42
 
 
43
bzr 1.17rc1 "So late it's brunch" 2009-07-13
 
44
############################################
 
45
 
 
46
Bazaar continues to blaze a straight and shining path to the 2.0 release and
 
47
the elevation of the ``2a`` beta format to the full glory of "supported and
 
48
stable".
 
49
 
 
50
Highlights in this release include greatly reduced memory consumption during
 
51
commits, faster ``ls``, faster ``annotate``, faster network operations if
 
52
you're specifying a revision number and the final destruction of those
 
53
annoying progress bar artifacts.
 
54
 
 
55
 
 
56
Compatibility Breaks
 
57
********************
 
58
 
15
59
* ``bzr register-branch`` from the Launchpad plugin now refers to "project"
16
60
  instead of "product" which is the correct Launchpad terminology.  The
17
61
  --product option is deprecated and users should switch to using --project.
36
80
  behavior.
37
81
  (Vincent Ladeuil, #206577)
38
82
 
 
83
* ``bzr switch --create-branch/-b`` can now be used to create and switch
 
84
  to a new branch. Supplying a name without a ``/`` will create the branch
 
85
  relative to the existing branch. (similar to how ``bzr switch name``
 
86
  works when the branch already exists.) (John Arbash Meinel)
 
87
 
39
88
 
40
89
Bug Fixes
41
90
*********
7628
7677
* Avoid circular imports by creating a deprecated function for
7629
7678
  ``bzrlib.tree.RevisionTree``. Callers should have been using
7630
7679
  ``bzrlib.revisontree.RevisionTree`` anyway. (John Arbash Meinel,
7631
 
  #63360, #66349)
 
7680
  #66349)
7632
7681
 
7633
7682
* Don't use ``socket.MSG_WAITALL`` as it doesn't exist on all
7634
7683
  platforms. (Martin Pool, #66356)