diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,11 +1,15 @@
-% Changelog
-% Ivan Lazar Miljenovic
 
 Release History and Changelog
 =============================
 
 The following is information about what major changes have gone into
 each release.
+
+Changes in 2999.20.2.0
+----------------------
+
+* Add `PrintDot` instances for `Word32` and `Word64`.
+* Dependency bumps.
 
 Changes in 2999.20.1.0
 ----------------------
diff --git a/Data/GraphViz/Printing.hs b/Data/GraphViz/Printing.hs
--- a/Data/GraphViz/Printing.hs
+++ b/Data/GraphViz/Printing.hs
@@ -92,7 +92,7 @@
 import qualified Data.Set            as Set
 import           Data.String         (IsString(..))
 import           Data.Version        (Version(..))
-import           Data.Word           (Word16, Word8)
+import           Data.Word           (Word64, Word32, Word16, Word8)
 
 #if !(MIN_VERSION_base (4,11,0))
 
@@ -190,6 +190,12 @@
 
 instance PrintDot Word16 where
   unqtDot = int . fromIntegral
+
+instance PrintDot Word32 where
+  unqtDot = unqtDot . toInteger
+
+instance PrintDot Word64 where
+  unqtDot = unqtDot . toInteger
 
 instance PrintDot Double where
   -- If it's an "integral" double, then print as an integer.  This
diff --git a/FAQ.md b/FAQ.md
--- a/FAQ.md
+++ b/FAQ.md
@@ -1,5 +1,3 @@
-% FAQ
-% Ivan Lazar Miljenovic
 
 Fortuitously Anticipated Queries (FAQ)
 ======================================
diff --git a/LICENSE.md b/LICENSE.md
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,5 +1,3 @@
-% License
-% Ivan Lazar Miljenovic
 
 Licensing Information
 =====================
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,10 +1,6 @@
-% Haskell bindings to the Graphviz toolkit
-% Ivan Lazar Miljenovic
 
 The graphviz Library
 ====================
-
-[![Hackage](https://img.shields.io/hackage/v/graphviz.svg)](https://hackage.haskell.org/package/graphviz) [![Build Status](https://travis-ci.org/ivan-m/graphviz.svg)](https://travis-ci.org/ivan-m/graphviz)
 
 The _graphviz_ library provides bindings to the [Graphviz] graph
 visualisation suite of tools for the purely functional programming
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env runghc
-
-import Distribution.Simple
-main = defaultMain
diff --git a/TODO.md b/TODO.md
--- a/TODO.md
+++ b/TODO.md
@@ -1,5 +1,3 @@
-% TODO
-% Ivan Lazar Miljenovic
 
 Future Plans for graphviz
 =========================
diff --git a/graphviz.cabal b/graphviz.cabal
--- a/graphviz.cabal
+++ b/graphviz.cabal
@@ -1,5 +1,5 @@
 Name:               graphviz
-Version:            2999.20.1.0
+Version:            2999.20.2.0
 Stability:          Beta
 Synopsis:           Bindings to Graphviz for graph visualisation.
 Description: {
@@ -30,17 +30,14 @@
   augment node and edge labels with positional information, etc.
 }
 
-Homepage:           https://github.com/ivan-m/graphviz
+Homepage:           https://gitlab.com/daniel-casanueva/haskell/graphviz
 Category:           Graphs, Graphics
 License:            BSD3
 License-File:       LICENSE.md
 Copyright:          Matthew Sackman, Ivan Lazar Miljenovic
 Author:             Matthew Sackman, Ivan Lazar Miljenovic
-Maintainer:         Ivan.Miljenovic@gmail.com
+Maintainer:         Daniel Casanueva (daniel.casanueva `at` proton.me)
 Build-Type:         Simple
-Tested-With:        GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2,
-                    GHC == 8.0.1, GHC == 8.2.2, GHC == 8.4.2,
-                    GHC == 8.6.2, GHC == 8.8.2, GHC == 8.10.1
 Cabal-Version:      1.14
 Extra-Source-Files: TODO.md
                     Changelog.md
@@ -48,10 +45,6 @@
                     FAQ.md
                     utils/AttributeGenerator.hs
 
-Source-Repository head
-    Type:         git
-    Location:     https://github.com/ivan-m/graphviz.git
-
 Flag test-parsing
      Description: Build a utility to test parsing of available Dot code.
      Default:     False
@@ -64,10 +57,10 @@
                            process,
                            directory,
                            temporary >=1.1 && <1.4,
-                           fgl >= 5.4 && < 5.8,
+                           fgl >= 5.4 && < 5.9,
                            filepath,
                            polyparse >=1.9 && <1.14,
-                           bytestring >= 0.9 && < 0.11,
+                           bytestring >= 0.9,
                            colour == 2.3.*,
                            mtl == 2.*,
                            text,
@@ -108,11 +101,7 @@
                            Data.GraphViz.Commands.Available
                            Data.GraphViz.Types.State
 
-        if True
-           Ghc-Options: -Wall
-
-        if impl(ghc >= 6.12.1)
-           Ghc-Options: -fno-warn-unused-do-bind
+        Ghc-Options: -Wall
 }
 
 Test-Suite graphviz-testsuite {
@@ -127,7 +116,7 @@
                            fgl >= 5.5.0.0,
                            fgl-arbitrary == 0.2.*,
                            filepath,
-                           hspec >= 2.1 && < 2.8,
+                           hspec >= 2.1 && < 3,
                            text,
                            QuickCheck >= 2.3 && < 2.15
         Build-Tool-Depends: hspec-discover:hspec-discover == 2.*
@@ -176,17 +165,13 @@
                           deepseq,
                           text,
                           graphviz,
-                          criterion >= 0.5 && < 1.6
+                          criterion >= 0.5 && < 1.7
 
         hs-Source-Dirs:   utils
 
         Main-Is:          Benchmark.hs
 
-        if True
-           Ghc-Options: -Wall
-
-        if impl(ghc >= 6.12.1)
-           Ghc-Options: -fno-warn-unused-do-bind
+        Ghc-Options: -Wall
 
         GHC-Prof-Options: -rtsopts
 }
