diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -70,9 +70,8 @@
 ## Getting source
 
 - Download the cabalized source package [from Hackage](http://hackage.haskell.org/package/epub-tools)
-- Download the cabalized source tarball [from here](http://ui3.info/d/proj/epub-tools/epub-tools-2.5.tar.gz)
 - epub-tools is available for Arch Linux [from the AUR](http://aur.archlinux.org/packages/epub-tools/)
-- Download [binaries for Windows](http://ui3.info/d/proj/epub-tools/epub-tools-2.5-win.zip)
+- Download [binaries for Windows](http://ui3.info/d/proj/epub-tools/epub-tools-2.7-win.zip)
 - Get the source with darcs: `$ darcs get http://hub.darcs.net/dino/epub-tools`
 - If you're just looking, [browse the source](http://hub.darcs.net/dino/epub-tools)
 
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,8 @@
+2.7 (2015-05-29)
+
+  * Added back Control.Applicative import for GHC 7.8 compatibility
+
+
 2.6 (2015-05-25)
 
    * Fixed an error in bad DSL command index reporting
diff --git a/epub-tools.cabal b/epub-tools.cabal
--- a/epub-tools.cabal
+++ b/epub-tools.cabal
@@ -1,6 +1,6 @@
 name:                epub-tools
 cabal-version:       >= 1.8
-version:             2.6
+version:             2.7
 build-type:          Simple
 license:             BSD3
 license-file:        LICENSE
diff --git a/src/EpubTools/epubname.hs b/src/EpubTools/epubname.hs
--- a/src/EpubTools/epubname.hs
+++ b/src/EpubTools/epubname.hs
@@ -1,11 +1,16 @@
 -- License: BSD3 (see LICENSE)
 -- Author: Dino Morelli <dino@ui3.info>
 
+-- This is for GHC 7.8/7.10 compatibility with the
+-- Control.Applicative import below
+{-# OPTIONS_GHC -fno-warn-unused-imports #-}
+
 {-# LANGUAGE FlexibleContexts #-}
 
 import Codec.Epub
 import Codec.Epub.Data.Metadata
 import Codec.Epub.Data.Package
+import Control.Applicative
 import Control.Monad
 import Control.Monad.Except
 import System.Directory ( doesDirectoryExist, doesFileExist, renameFile )
