@hackage hkgr0.1

Simple Hackage release workflow for package maintainers

Hkgr

Hackage GPL-3 license Build status

hkgr (pronounced "Hackager") is a tool for making releases of Haskell packages on Hackage.

Usage

$ hkgr
HacKaGe Release workflow

Usage: hkgr [--version] COMMAND
  A tool to help Hackage maintainers with releasing packages

Available options:
  -h,--help                Show this help text
  --version                Show version

Available commands:
  tag                      'git tag' version
  dist                     Make tarball from latest tag ('cabal sdist')
  version                  Show the package version from .cabal file
  upload                   'cabal upload' tarball to Hackage
  publish                  Publish to Hackage ('cabal upload --publish')
  upload-haddock           Upload documentation to Hackage
  publish-haddock          Upload documentation to Hackage
  push-tags                'git push --tags' to origin

Example

$ git commit -m "new release"
$ git push
$ hkgr tag
$ hkgr dist
$ hkgr upload
$ hkgr upload-haddock
$ hkgr publish
$ hkgr publish-haddock