diff --git a/README b/README
--- a/README
+++ b/README
@@ -8,5 +8,5 @@
   http://slavepianos.org/rd/
   http://haskell.org/
 
-(c) rohan drape, 2006-2010
+(c) rohan drape, 2006-2011
     gpl, http://gnu.org/copyleft/
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,3 @@
+#!/usr/bin/env runhaskell
+import Distribution.Simple
+main = defaultMain
diff --git a/Setup.lhs b/Setup.lhs
deleted file mode 100644
--- a/Setup.lhs
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env runhaskell
-> import Distribution.Simple
-> main = defaultMain
diff --git a/Text/HTML/Light/Element.hs b/Text/HTML/Light/Element.hs
--- a/Text/HTML/Light/Element.hs
+++ b/Text/HTML/Light/Element.hs
@@ -118,6 +118,9 @@
 th :: [Attr] -> [Content] -> Content
 th z e = Elem (Element (unqual "th") z e Nothing)
 
+thead :: [Attr] -> [Content] -> Content
+thead z e = Elem (Element (unqual "thead") z e Nothing)
+
 title :: [Attr] -> [Content] -> Content
 title z e = Elem (Element (unqual "title") z e Nothing)
 
diff --git a/html-minimalist.cabal b/html-minimalist.cabal
--- a/html-minimalist.cabal
+++ b/html-minimalist.cabal
@@ -1,5 +1,5 @@
 Name:              html-minimalist
-Version:           0.2
+Version:           0.3
 Synopsis:          Minimalist haskell html library
 Description:       Text.HTML.Light is a very simple Haskell module 
                    for writing [x]html documents.  It provides 
@@ -7,12 +7,12 @@
                    in terms of Text.XML.Light.
 License:           GPL
 Category:          Text
-Copyright:         (c) Rohan Drape, 2006-2010
+Copyright:         (c) Rohan Drape, 2006-2011
 Author:            Rohan Drape
 Maintainer:        rd@slavepianos.org
 Stability:         Experimental
 Homepage:          http://slavepianos.org/rd/?t=html-minimalist
-Tested-With:       GHC == 6.10.3
+Tested-With:       GHC == 6.12.1
 Build-Type:        Simple
 Cabal-Version:     >= 1.6
 
