diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2007, 2008 Dino Morelli
+Copyright (c) 2007-2009 Dino Morelli
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/README b/README
--- a/README
+++ b/README
@@ -12,12 +12,16 @@
 and the usually-camera-assigned serial number, often appearing in the
 filename.
 
-This program is known to work with GHC 6.8.3 (and probably still 6.8.2) on systems where System.Posix (unix) packages are available.
+This program is known to work with GHC 6.10.3 on systems where System.Posix (unix) and exif packages are available.
 
 
 *install*
 
-Build and install in the typical way for Cabalized software:
+With cabal-install, get it directly from Hackage:
+
+   $ cabal install photoname
+
+Or manually after unpacking source:
 
    $ runhaskell Setup.lhs configure
    $ runhaskell Setup.lhs build
diff --git a/TODO b/TODO
--- a/TODO
+++ b/TODO
@@ -22,3 +22,6 @@
 - Deal gracefully with unknown dates. This means not just putting pictures into the 0000/0000-00-00 directory, but making sure that the _### serial number part is incremented from the highest one in there.
 
 - Allow additional switch for part of filenames for initials of photographer: _xyz  Call this the suffix? (-s --suffix)
+
+- Add the Homepage item to the debian/control that you see now in more recent packages. Use dh_make on something to see what it looks like, something like this:
+   Homepage: <url>
diff --git a/photoname.cabal b/photoname.cabal
--- a/photoname.cabal
+++ b/photoname.cabal
@@ -1,10 +1,10 @@
 name:                photoname
 cabal-version:       >= 1.2
-version:             2.1
+version:             2.2
 build-type:          Simple
 license:             BSD3
 license-file:        LICENSE
-copyright:           2007, 2008 Dino Morelli 
+copyright:           2007-2009 Dino Morelli 
 author:              Dino Morelli 
 maintainer:          Dino Morelli <dino@ui3.info>
 stability:           stable
@@ -18,7 +18,7 @@
 
 executable           photoname
    main-is:          photoname.hs
-   build-depends:    base, exif, filepath, mtl, old-locale, parsec, 
-                     time, unix
+   build-depends:    base >= 3 && < 5, exif, filepath, mtl, old-locale, 
+                     parsec, time, unix
    ghc-options:      -Wall
    hs-source-dirs:   src
diff --git a/src/Photoname/Date.hs b/src/Photoname/Date.hs
--- a/src/Photoname/Date.hs
+++ b/src/Photoname/Date.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/src/Photoname/Opts.hs b/src/Photoname/Opts.hs
--- a/src/Photoname/Opts.hs
+++ b/src/Photoname/Opts.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
@@ -79,5 +79,5 @@
          , ""
          , "Note that the default behavior of this software is to create hard links to the new paths and leave the original links as they were. You can use the --move switch to blow away the original location, leaving only the new."
          , ""
-         , "Version 2.1  2008-Oct-10  Dino Morelli <dino@ui3.info>"
+         , "Version 2.2  2009-Jun-07  Dino Morelli <dino@ui3.info>"
          ]
diff --git a/src/Photoname/Serial.hs b/src/Photoname/Serial.hs
--- a/src/Photoname/Serial.hs
+++ b/src/Photoname/Serial.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/src/photoname.hs b/src/photoname.hs
--- a/src/photoname.hs
+++ b/src/photoname.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/testsuite/TestHelp.hs b/testsuite/TestHelp.hs
--- a/testsuite/TestHelp.hs
+++ b/testsuite/TestHelp.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/testsuite/TestLink.hs b/testsuite/TestLink.hs
--- a/testsuite/TestLink.hs
+++ b/testsuite/TestLink.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/testsuite/Util.hs b/testsuite/Util.hs
--- a/testsuite/Util.hs
+++ b/testsuite/Util.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
diff --git a/testsuite/runtests.hs b/testsuite/runtests.hs
--- a/testsuite/runtests.hs
+++ b/testsuite/runtests.hs
@@ -1,4 +1,4 @@
--- Copyright: 2007, 2008 Dino Morelli
+-- Copyright: 2007-2009 Dino Morelli
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
