diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-06 17:20:39 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-06 17:20:39 -0500 |
commit | ba31b657c49649ee0b00663a32e907bb482270ac (patch) | |
tree | 31142a323cd8a9107563a273b7c15fd8e76eb2a1 /NEWS | |
parent | fc131e3acbf657f42959910c4f4483a09c871016 (diff) | |
download | bugseverywhere-ba31b657c49649ee0b00663a32e907bb482270ac.tar.gz |
be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.
Previously, for the directory structure
A
|-- X
`-- Y
You could do something like
A$ be --dir X diff --dir ../Y
Now it's
A$ be --dir X diff --dir Y
The --root option to `be init` has been removed as redundant. Replace
calls like
be init --root DIR
with
be --dir DIR init
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,8 @@ +December 6, 2009 + * be --dir DIR COMMAND now roots the bugdir in DIR _without_ changing + directories. + * `be init --root DIR` should now be `be --dir DIR init`. + December 5, 2009 * targets are now a special type of bug (severity 'target'), so you can do all the things you do with normal bugs to them as well |