~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2006-03-31 02:39:09 UTC
  • mfrom: (1558.7.10 bzr.ab.integration)
  • mto: This revision was merged to the branch mainline in revision 1634.
  • Revision ID: aaron.bentley@utoronto.ca-20060331023909-957277c1233c6aff
Merge from bzr.ab.integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    * Upgrade can now upgrade over the network. (Robert Collins)
39
39
 
40
40
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
41
 
      behaviour. They use the existing serverless-mode and store no data
42
 
      locally. As such they are not suitable for use except in high bandwidth
43
 
      low latency environments like LAN's or local disk. (Robert Collins)
 
41
      behaviour.  By default they will cache history in the checkout, but
 
42
      with --lightweight almost all data is kept in the master branch.
 
43
      (Robert Collins)
44
44
 
45
45
    * 'revert' unversions newly-versioned files, instead of deleting them.
46
46
 
54
54
 
55
55
    * New 'reconcile' command will check branch consistency and repair indexes
56
56
      that can become out of sync in pre 0.8 formats. (Robert Collins,
57
 
      Aaron Bentley)
 
57
      Daniel Silverstone)
58
58
 
59
59
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
60
60
      what storage format is created or produced.  (Robert Collins, 
61
61
      Martin Pool)
62
62
 
 
63
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
64
 
 
65
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
66
 
 
67
    * New 'init-repository' command, plus support for repositories in 'init'
 
68
      and 'branch'
 
69
 
 
70
  CHANGES:
 
71
 
 
72
    * Commit is now verbose by default, and shows changed filenames and the 
 
73
      new revision number.  (Robert Collins, Martin Pool)
 
74
 
 
75
    * Unify 'mv', 'move', 'rename'.  (#5379, Matthew Fuller)
 
76
 
 
77
    * 'bzr -h' shows help.  (#35940, Martin Pool, Ian Bicking)
 
78
 
63
79
  INTERNALS:
64
80
  
65
81
    * The internal storage of history, and logical branch identity have now
67
83
      management routines are now in bzrlib.lockablefiles. 
68
84
      (Aaron Bentley, Robert Collins, Martin Pool)
69
85
 
 
86
    * Transports can now raise DependencyNotPresent if they need a library
 
87
      which is not installed, and then another implementation will be 
 
88
      tried.  (Martin Pool)
 
89
 
 
90
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
 
91
      (Martin Pool)
 
92
 
70
93
    * Using Tree Transform for merge, revert, tree-building
71
94
 
72
95
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,