~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-09-26 08:56:15 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050926085615-99b8fb35f41b541d
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr development head
 
1
development head
 
2
 
 
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.
 
16
 
 
17
  BUG FIXES:
 
18
 
 
19
    * Various minor bug in windows support have been fixed, largely in the
 
20
      test suite. Contributed by Alexander Belchenko.
 
21
      
 
22
  INTERNALS:
 
23
 
 
24
    * removed uuid() as it was unused.
 
25
 
 
26
bzr 0.0.8 2005-09-20
 
27
 
 
28
  IMPROVEMENTS:
 
29
 
 
30
    * Adding a file whose parent directory is not versioned will
 
31
      implicitly add the parent, and so on up to the root. This means
 
32
      you should never need to explictly add a directory, they'll just
 
33
      get added when you add a file in the directory.  Contributed by
 
34
      Michael Ellerman.
 
35
 
 
36
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
37
      Nir Soffer.
 
38
 
 
39
    * If you set BZR_EDITOR in the environment, it is checked in
 
40
      preference to EDITOR and the config file for the interactive commit
 
41
      editing program. Related to this is a bugfix where a missing program
 
42
      set in EDITOR would cause editing to fail, now the fallback program
 
43
      for the operating system is still tried.
 
44
 
 
45
    * Files that are not directories/symlinks/regular files will no longer
 
46
      cause bzr to fail, it will just ignore them by default. You cannot add
 
47
      them to the tree though - they are not versionable.
 
48
 
 
49
 
 
50
  INTERNALS:
 
51
 
 
52
    * Refactor xml packing/unpacking.
 
53
 
 
54
 
 
55
  BUG FIXES: 
 
56
 
 
57
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
58
 
 
59
    * Fixed strange error when trying to access a nonexistent http
 
60
      branch.
 
61
 
 
62
    * Make sure that the hashcache gets written out if it can't be
 
63
      read.
 
64
 
 
65
 
 
66
  PORTABILITY:
 
67
 
 
68
    * Various Windows fixes from Ollie Rutherfurd.
 
69
 
 
70
    * Quieten warnings about locking; patch from Matt Lavin.
 
71
 
 
72
 
 
73
bzr-0.0.7 2005-09-02
2
74
 
3
75
  NEW FEATURES:
4
76
 
8
80
    * New expert command ``bzr find-merge-base`` for debugging merges.
9
81
 
10
82
 
 
83
  ENHANCEMENTS:
 
84
 
 
85
    * Much better merge support.
 
86
 
 
87
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
88
      (seven characters) which is the same as CVS and pleases things
 
89
      like emacs smerge.
 
90
 
 
91
 
11
92
  BUG FIXES:
12
93
 
13
94
    * ``bzr upgrade`` no longer fails when trying to fix trees that
14
95
      mention revisions that are not present.
15
96
 
 
97
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
98
 
 
99
    * Fix case of $EDITOR containing options for the editor.
 
100
 
 
101
    * Fix log -r refusing to show the last revision.
 
102
      (Patch from Goffredo Baroncelli.)
 
103
 
16
104
 
17
105
  CHANGES:
18
106
 
19
107
    * ``bzr log --show-ids`` shows the revision ids of all parents.
20
108
 
 
109
    * Externally provided commands on your $BZRPATH no longer need
 
110
      to recognize --bzr-usage to work properly, and can just handle
 
111
      --help themselves.
 
112
 
21
113
 
22
114
  LIBRARY:
23
115