diff --git a/Language/SQL/SimpleSQL/Syntax.lhs b/Language/SQL/SimpleSQL/Syntax.lhs
index 73385dc..aa91235 100644
--- a/Language/SQL/SimpleSQL/Syntax.lhs
+++ b/Language/SQL/SimpleSQL/Syntax.lhs
@@ -275,8 +275,6 @@ I'm not sure if this is valid syntax or not.
 > data Alias = Alias Name (Maybe [Name])
 >              deriving (Eq,Show,Read)
 
-TODO: add function table ref
-
 > -- | The type of a join.
 > data JoinType = JInner | JLeft | JRight | JFull | JCross
 >                 deriving (Eq,Show,Read)
diff --git a/README b/README
index 1e34418..f1e497f 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
 A parser for SQL queries in Haskell.
 
-Homepage: http://jakewheat.github.io/simple_sql_parser/
+Homepage: http://jakewheat.github.io/simple-sql-parser/
 
 Contact: jakewheatmail@gmail.com
\ No newline at end of file
diff --git a/TODO b/TODO
index a562f98..d33ac71 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,16 @@
-next release:
 
-rename the github project to use - instead of underscores
+update changelog
+
+rename the github project to use - instead of underscores, update
+   docs, etc., update website and upload new hackage version close
+   together
+check new website
+do release
+change old simple_sql_parser project to just point to new location
+  + web site point to new
+
+
+next release:
 
 add to website: pretty printed tpch, maybe other queries as
    demonstration
diff --git a/simple-sql-parser.cabal b/simple-sql-parser.cabal
index 4be620f..ab42454 100644
--- a/simple-sql-parser.cabal
+++ b/simple-sql-parser.cabal
@@ -1,9 +1,9 @@
 name:                simple-sql-parser
 version:             0.2.0
 synopsis:            A parser for SQL queries
-description:         A parser for SQL queries. Please see the homepage for more information <http://jakewheat.github.io/simple_sql_parser/>.
+description:         A parser for SQL queries. Please see the homepage for more information <http://jakewheat.github.io/simple-sql-parser/>.
 
-homepage:            http://jakewheat.github.io/simple_sql_parser/
+homepage:            http://jakewheat.github.io/simple-sql-parser/
 license:             BSD3
 license-file:        LICENSE
 author:              Jake Wheat
@@ -13,11 +13,11 @@ category:            Database,Language
 build-type:          Simple
 extra-source-files:  README,LICENSE,changelog
 cabal-version:       >=1.10
-bug-reports:         https://github.com/JakeWheat/simple_sql_parser/issues
+bug-reports:         https://github.com/JakeWheat/simple-sql-parser/issues
 
 source-repository head
   type:                git
-  location:            https://github.com/JakeWheat/simple_sql_parser.git
+  location:            https://github.com/JakeWheat/simple-sql-parser.git
 
 library
   exposed-modules:     Language.SQL.SimpleSQL.Pretty,