~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

add a clean target

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
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
 
 
16
 
  IMPROVEMENTS:
17
 
 
18
 
    * 'branch' now accepts a --basis parameter which will take advantage
19
 
      of local history when making a new branch. This allows faster 
20
 
      branching of remote branches. Contributed by Aaron Bentley.
21
 
 
22
 
    * New tree format based on weave files, called version 5.
23
 
      Existing branches can be upgraded to this format using 
24
 
      'bzr upgrade'.
25
 
 
26
 
    * Symlinks are now versionable. Initial patch by 
27
 
      Erik Toubro Nielsen, updated to head by Robert Collins.
28
 
 
29
 
    * Executable bits are tracked on files. Patch from Gustavo
30
 
      Niemeyer.
31
 
 
32
 
    * 'bzr status' now shows unknown files inside a selected directory.
33
 
      Patch from Heikki Paajanen.
34
 
 
35
 
 
36
 
  INTERNALS:
37
 
 
38
 
    * Test case failures have the exception printed after the log 
39
 
      for your viewing pleasure.
40
 
 
41
 
    * InventoryEntry is now an abstract base class, use one of the
42
 
      concrete InventoryDirectory etc classes instead.
43
 
 
44
 
 
45
 
  TESTING:
46
 
 
47
 
    * Removed testsweet module so that tests can be run after 
48
 
      bzr installed by 'bzr selftest'.
49
 
 
50
 
    * 'bzr selftest' command-line arguments can now be partial ids
51
 
      of tests to run, e.g. 'bzr selftest test_weave'
52
 
 
53
 
      
54
 
bzr 0.0.9 2005-09-23
55
 
 
56
 
  BUG FIXES:
57
 
 
58
 
    * Fixed "branch -r" option.
59
 
 
60
 
    * Fix remote access to branches containing non-compressed history.
61
 
      (Robert Collins).
62
 
 
63
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
64
 
 
65
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
66
 
   
67
 
    * Various minor bug in windows support have been fixed, largely in the
68
 
      test suite. Contributed by Alexander Belchenko.
69
 
 
70
 
  IMPROVEMENTS:
71
 
 
72
 
    * Status now accepts a -r argument to give status between chosen
73
 
      revisions. Contributed by Heikki Paajanen.
74
 
 
75
 
    * Revision arguments no longer use +/-/= to control ranges, instead
76
 
      there is a 'before' namespace, which limits the successive namespace.
77
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
78
 
      select everything from yesterday and before today. Contributed by
79
 
      Robey Pointer
80
 
 
81
 
    * There is now a bzr.bat file created by distutils when building on 
82
 
      Windows. Contributed by Alexander Belchenko.
83
 
 
84
 
  INTERNALS:
85
 
 
86
 
    * Removed uuid() as it was unused.
87
 
 
88
 
    * Improved 'fetch' code for pulling revisions from one branch into
89
 
      another (used by pull, merged, etc.)
90
 
 
91
 
 
92
 
bzr 0.0.8 2005-09-20
 
1
development head
93
2
 
94
3
  IMPROVEMENTS:
95
4
 
99
8
      get added when you add a file in the directory.  Contributed by
100
9
      Michael Ellerman.
101
10
 
102
 
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
103
 
      Nir Soffer.
104
 
 
105
 
    * If you set BZR_EDITOR in the environment, it is checked in
106
 
      preference to EDITOR and the config file for the interactive commit
107
 
      editing program. Related to this is a bugfix where a missing program
108
 
      set in EDITOR would cause editing to fail, now the fallback program
109
 
      for the operating system is still tried.
110
 
 
111
 
    * Files that are not directories/symlinks/regular files will no longer
112
 
      cause bzr to fail, it will just ignore them by default. You cannot add
113
 
      them to the tree though - they are not versionable.
114
 
 
115
11
 
116
12
  INTERNALS:
117
13
 
118
14
    * Refactor xml packing/unpacking.
119
15
 
 
16
 
120
17
  BUG FIXES: 
121
18
 
122
19
    * Fixed 'bzr mv' by Ollie Rutherfurd.
132
29
 
133
30
    * Various Windows fixes from Ollie Rutherfurd.
134
31
 
135
 
    * Quieten warnings about locking; patch from Matt Lavin.
136
 
 
137
32
 
138
33
bzr-0.0.7 2005-09-02
139
34