~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge in format-5 work - release bzr 0.1rc1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr 0.1 2005-10-06
 
2
 
 
3
 
 
4
  BUG FIXES:
 
5
  
 
6
    * bzr-man.py has been updated to work again. Contributed by
 
7
      Rob Weir.
 
8
 
 
9
    * Locking is now done with fcntl.lockf which works with NFS
 
10
      file systems. Contributed by Harald Meland.
 
11
 
 
12
    * Commit will no longer commit without a log message, an 
 
13
      error is returned instead. Contributed by Jelmer Vernooij.
 
14
 
 
15
    * If you commit a specific file in a sub directory, any of its
 
16
      parent directories that are added but not listed will be 
 
17
      automatically included. Suggested by Michael Ellerman.
 
18
 
 
19
 
 
20
  IMPROVEMENTS:
 
21
 
 
22
    * 'branch' now accepts a --basis parameter which will take advantage
 
23
      of local history when making a new branch. This allows faster 
 
24
      branching of remote branches. Contributed by Aaron Bentley.
 
25
 
 
26
    * New tree format based on weave files, called version 5.
 
27
      Existing branches can be upgraded to this format using 
 
28
      'bzr upgrade'.
 
29
 
 
30
    * Symlinks are now versionable. Initial patch by 
 
31
      Erik Toubro Nielsen, updated to head by Robert Collins.
 
32
 
 
33
    * Executable bits are tracked on files. Patch from Gustavo
 
34
      Niemeyer.
 
35
 
 
36
    * 'bzr status' now shows unknown files inside a selected directory.
 
37
      Patch from Heikki Paajanen.
 
38
 
 
39
 
 
40
  INTERNALS:
 
41
 
 
42
    * Test case failures have the exception printed after the log 
 
43
      for your viewing pleasure.
 
44
 
 
45
    * InventoryEntry is now an abstract base class, use one of the
 
46
      concrete InventoryDirectory etc classes instead.
 
47
 
 
48
 
 
49
  TESTING:
 
50
 
 
51
    * Removed testsweet module so that tests can be run after 
 
52
      bzr installed by 'bzr selftest'.
 
53
 
 
54
    * 'bzr selftest' command-line arguments can now be partial ids
 
55
      of tests to run, e.g. 'bzr selftest test_weave'
 
56
 
 
57
      
1
58
bzr 0.0.9 2005-09-23
2
59
 
3
60
  BUG FIXES:
11
68
 
12
69
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
13
70
   
 
71
    * Various minor bug in windows support have been fixed, largely in the
 
72
      test suite. Contributed by Alexander Belchenko.
 
73
 
14
74
  IMPROVEMENTS:
15
75
 
16
 
    * Status now accepted a -r argument to give status between chosen
 
76
    * Status now accepts a -r argument to give status between chosen
17
77
      revisions. Contributed by Heikki Paajanen.
18
78
 
19
79
    * Revision arguments no longer use +/-/= to control ranges, instead
22
82
      select everything from yesterday and before today. Contributed by
23
83
      Robey Pointer
24
84
 
 
85
    * There is now a bzr.bat file created by distutils when building on 
 
86
      Windows. Contributed by Alexander Belchenko.
 
87
 
 
88
  INTERNALS:
 
89
 
 
90
    * Removed uuid() as it was unused.
 
91
 
 
92
    * Improved 'fetch' code for pulling revisions from one branch into
 
93
      another (used by pull, merged, etc.)
 
94
 
 
95
 
25
96
bzr 0.0.8 2005-09-20
26
97
 
27
98
  IMPROVEMENTS:
50
121
 
51
122
    * Refactor xml packing/unpacking.
52
123
 
53
 
 
54
124
  BUG FIXES: 
55
125
 
56
126
    * Fixed 'bzr mv' by Ollie Rutherfurd.