I'm working fast and furiously on a new Haskell package for compiler writers. I'm going through many minor version numbers daily, and the Haskell packaging system, Cabal, doesn't seem to offer any tools for updating version numbers or for maintaining a change log. (Logs are going into git
but that's not visible to anyone using the package.) I would kill for something equivalent to Debian's uupdate
or dch
/debchange
tools.
Does anyone know of general-purpose tools that could be used to increment version numbers automatically and add an entry to a change log?
-
To non-answer your question, I'm not aware of anything. This sounds like a good match for posting in the Haskell Proposals subreddit, since it seems like a pretty useful idea.
-
I use a very simple scheme to generate my
CHANGELOG
. I just askdarcs
for it and include it in theextra-files
section of my package's.cabal
file. Though, this seems too simplistic for what you are asking. =)That said, you can go quite a bit farther and use a custom cabal
Setup.(hs|lhs)
that builds theCHANGELOG
duringcabal sdist
out of yourdarcs
orgit
repository's commit info (or out of whatever system you decide to use to track it)The
Setup.lhs
used bydarcs
does something very similar to include information on version numbers and number of applied patches since the last version. Look at thesdistHook
andgenerateVersionModule
machinery inSetup.lhs
to get an idea of how this can be done.Norman Ramsey : I'm a frequent, compulsive committer, and I don't want my users to suffer through my RCS logs...
0 comments:
Post a Comment