diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Version 1.4.1
+  - Support for Cabal 2
+  - Updates to build infrastructure
+  - Fixes memory leak
+
 * Version 1.3
   - Corrects collapsing logic.
   - Change node coloring in clusters:
diff --git a/graphmod.cabal b/graphmod.cabal
--- a/graphmod.cabal
+++ b/graphmod.cabal
@@ -1,5 +1,5 @@
 name:           graphmod
-version:        1.4.1
+version:        1.4.2
 license:        BSD3
 license-file:   LICENSE
 author:         Iavor S. Diatchki
diff --git a/src/CabalSupport.hs b/src/CabalSupport.hs
--- a/src/CabalSupport.hs
+++ b/src/CabalSupport.hs
@@ -16,7 +16,11 @@
 import Distribution.ModuleName(ModuleName,components)
 
 #if MIN_VERSION_Cabal(2,0,0)
+#if MIN_VERSION_Cabal(2,2,0)
+import Distribution.PackageDescription.Parsec(readGenericPackageDescription)
+#else
 import Distribution.PackageDescription.Parse(readGenericPackageDescription)
+#endif
 import Distribution.Types.UnqualComponentName (UnqualComponentName)
 import Distribution.Text (disp)
 import Text.PrettyPrint (render)
