Posted By: William Morgan
Date: 2008-07-27 22:18
Summary: ditz 0.4 Released
Project: ditz
ditz version 0.4 has been released!
Ditz is a simple, light-weight distributed issue tracker designed to work with distributed version control systems like git, darcs, Mercurial, and Bazaar. It can also be used with centralized systems like SVN.
Ditz maintains an issue database directory on disk, with files written in a line-based and human-editable format. This directory can be kept under version control, alongside project code.
There are different ways to use ditz:
1. Treat issue change the same as code change: include it as part of commits, and merge it with changes from other developers. (Resolving conflicts in the usual manner.) 2. Keep the issue database in the repository but in a separate branch. Issue changes can be managed by your VCS, but is not tied directly to commits. 3. Keep the issue database separate and not under VCS at all.
Your particular usage will depend on what you want to get out of ditz.
Ditz provides a simple, console-based interface for creating and updating the issue database file, and some rudimentary HTML generation capabilities for producing world-readable status pages. It currently offers no central public method of bug submission.
Synopsis:
# set up project. creates the bugs.yaml file. 1. ditz init 2. ditz add-release
Changes:
## 0.4 / 2008-07-27 * bugfix: HOME environment variable now correctly detected on windows * hooks loaded from both home directory and project directory * added bash shell completion * plugin architecture for tighter SCM integration, etc * 'ditz grep' should also grep against comments, log messages, etc * added man page * removed ditz-convert-from-monolith * lots of HTML output tweaking ## 0.3 / 2008-06-04 * readline support for all text entry * hook system. Use ditz -l to see possible hooks. * new commands: archive, shortlog, set-component * improved commands: log, assign, add-release * new issue type: 'tasks' * 'ditz' by itself shows the todo list * zsh tab completion for subcommands * local config can now specify bugs directory location * issue name interpolation now on all issue fields * bugfix: various HTML generation bugs * bugfix: ditz now works from project subdirectories * bugfix: removed UNIX-specific environment variable assumptions ## 0.2 / 2008-04-11 * bugfix: store each issue in a separate file to avoid false conflicts * added per-command help * added 'log' command for recent activity * added better exception handling---turn into pretty error messages * added text-area commands like /edit, /reset, etc * all times now stored in UTC ## 0.1.2 / 2008-04-04 * bugfix: add_reference very broken ## 0.1.1 / 2008-04-04 * bugfix: bugfix/feature question always returns feature ## 0.1 / 2008-04-02 * Initial release!
|
|