1module Version (version, copyright, disclaimer)
2where
3
4-- version number is major.minor.patchlvl; don't change the format of the
5-- `versnum' line as it is `grep'ed for by a Makefile
6--
7idstr      = "$Id: Version.hs,v 1.1 2012/05/27 16:49:07 dmwit Exp $"
8name       = "C->Haskell Compiler"
9versnum    = "0.13.13 (gtk2hs branch)"
10versnick   = "\"Bin IO\""
11date       = "27 May 2012"
12version    = name ++ ", version " ++ versnum ++ " " ++ versnick ++ ", " ++ date
13copyright  = "Copyright (c) [1999..2004] Manuel M T Chakravarty"
14disclaimer = "This software is distributed under the \
15             \terms of the GNU Public Licence.\n\
16             \NO WARRANTY WHATSOEVER IS PROVIDED. \
17             \See the details in the documentation."
18