5
* .bzrignore is excluded from exports, on the grounds that it's a bzr
6
internal-use file and may not be wanted. (Jamie Wilkinson)
8
* The "bzr directories" command were removed in favor of the new
9
--kind option to the "bzr inventory" command. To list all
10
versioned directories, now use "bzr inventory --kind directory".
13
* Under Windows configuration directory is now %APPDATA%\bazaar\2.0
14
by default. (John Arbash Meinel)
16
* The parent of Bzr configuration directory can be set by BZR_HOME
17
environment variable. Now the path for it is searched in BZR_HOME, then
18
in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
19
points to C:\Documents and Settings\User Name\Application Data), HOME.
5
24
* "bzr INIT dir" now initializes the specified directory, and creates
6
25
it if it does not exist. (John Arbash Meinel)
27
* New remerge command (Aaron Bentley)
8
29
* Better zsh completion script. (Steve Borho)
10
31
* 'bzr diff' now returns 1 when there are changes in the working
15
36
location in the ~/.bazaar/branches.conf configuration file.
39
* Test directories are only kept if the test fails and the user requests
42
* Tweaks to short log printing
44
* Added branch nicks, new nick command, printing them in log output.
47
* If $BZR_PDB is set, pop into the debugger when an uncaught exception
50
* Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
51
the same as Subversion. (Martin Pool)
53
* New ftp transport support (on ftplib), for ftp:// and aftp://
54
URLs. (Daniel Silverstone)
20
58
* SFTP can walk up to the root path without index errors. (Robert Collins)
22
60
* Fix bugs in running bzr with 'python -O'. (Martin Pool)
62
* Error when run with -OO
24
64
* Fix bug in reporting http errors that don't have an http error code.
67
* Handle more cases of pipe errors in display commands
69
* Change status to 3 for all errors
71
* Files that are added and unlinked before committing are completely
72
ignored by diff and status
27
74
* Stores with some compressed texts and some uncompressed texts are now
28
75
able to be used. (John A Meinel)
77
* Show files which are both renamed and modified as such in 'bzr
78
status' output. (#4503, Daniel Silverstone)
80
* Make annotate cope better with revisions committed without a valid
81
email address. (Marien Zwart)
83
* Fix representation of tab characters in commit messages. (Harald
86
* List of plugin directories in BZR_PLUGIN_PASS environment variable is
87
now parsed properly under Windows. (Alexander Belchenko)
32
91
* Fix selftest asking for passwords when there are no SFTP keys.
35
94
* Fix selftest run with 'python -O'. (Martin Pool)
96
* Fix HTTP tests under Windows. (John Arbash Meinel)
98
* Make tests work even if HOME is not set (Aaron Bentley)
100
* Updated build_tree to use fixed line-endings for tests which read
101
the file cotents and compare. Make some tests use this to pass under
102
Windows. (John Arbash Meinel)
104
* Skip stat and symlink tests under Windows. (Alexander Belchenko)
106
* Delay in selftest/testhashcash is now issued under win32 and Cygwin.
39
111
* WorkingTree.pull has been split across Branch and WorkingTree,