~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-09-27 07:24:40 UTC
  • mfrom: (1185.1.41)
  • Revision ID: robertc@robertcollins.net-20050927072440-1bf4d99c3e1db5b3
pair programming worx... merge integration and weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
development head
2
2
 
3
 
  CHANGES:
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * Status now accepted a -r argument to give status between chosen
 
6
      revisions. Contributed by Heikki Paajanen.
 
7
 
 
8
    * Revision arguments no longer use +/-/= to control ranges, instead
 
9
      there is a 'before' namespace, which limits the successive namespace.
 
10
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
11
      select everything from yesterday and before today. Contributed by
 
12
      Robey Pointer
 
13
 
 
14
    * There is now a bzr.bat file created by distutils when building on 
 
15
      Windows. Contributed by Alexander Belchenko.
4
16
 
5
17
    * New tree format based on weave files, called version 5.
6
18
      Existing branches can be upgraded to this format using 
7
19
      'bzr upgrade'.
8
20
 
 
21
  BUG FIXES:
9
22
 
 
23
    * Various minor bug in windows support have been fixed, largely in the
 
24
      test suite. Contributed by Alexander Belchenko.
 
25
      
10
26
  INTERNALS:
11
27
 
12
 
    * Refactor xml packing/unpacking.
 
28
    * Removed uuid() as it was unused.
13
29
 
14
30
    * Improved 'fetch' code for pulling revisions from one branch into
15
31
      another (used by pull, merged, etc.)
16
32
 
17
33
 
 
34
bzr 0.0.8 2005-09-20
 
35
 
 
36
  IMPROVEMENTS:
 
37
 
 
38
    * Adding a file whose parent directory is not versioned will
 
39
      implicitly add the parent, and so on up to the root. This means
 
40
      you should never need to explictly add a directory, they'll just
 
41
      get added when you add a file in the directory.  Contributed by
 
42
      Michael Ellerman.
 
43
 
 
44
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
45
      Nir Soffer.
 
46
 
 
47
    * If you set BZR_EDITOR in the environment, it is checked in
 
48
      preference to EDITOR and the config file for the interactive commit
 
49
      editing program. Related to this is a bugfix where a missing program
 
50
      set in EDITOR would cause editing to fail, now the fallback program
 
51
      for the operating system is still tried.
 
52
 
 
53
    * Files that are not directories/symlinks/regular files will no longer
 
54
      cause bzr to fail, it will just ignore them by default. You cannot add
 
55
      them to the tree though - they are not versionable.
 
56
 
 
57
 
 
58
  INTERNALS:
 
59
 
 
60
    * Refactor xml packing/unpacking.
 
61
 
 
62
  BUG FIXES: 
 
63
 
 
64
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
65
 
 
66
    * Fixed strange error when trying to access a nonexistent http
 
67
      branch.
 
68
 
 
69
    * Make sure that the hashcache gets written out if it can't be
 
70
      read.
 
71
 
 
72
 
 
73
  PORTABILITY:
 
74
 
 
75
    * Various Windows fixes from Ollie Rutherfurd.
 
76
 
 
77
    * Quieten warnings about locking; patch from Matt Lavin.
18
78
 
19
79
 
20
80
bzr-0.0.7 2005-09-02