diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,9 +1,11 @@
 DCPU-16 Emulator & Assembler
 ===============
+
 DCPU-16 is a 16-bit processor designed by Markus "Notch" Persson for the postponed video game 0x10c.
 
 Features
 --------
+
 - Full spec 1.1 implementation
 - Loads binary programs
 - Loads assembler programs
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -2,7 +2,8 @@
 
 import qualified Dcpu16 as D
 import System.FilePath (takeExtension)
-import Options.Applicative
+import Options.Applicative hiding ((<>))
+import Data.Monoid ((<>))
 import Data.Char
 
 data Opts = Opts { prog :: String }
diff --git a/dcpu16.cabal b/dcpu16.cabal
--- a/dcpu16.cabal
+++ b/dcpu16.cabal
@@ -1,7 +1,7 @@
 name:                dcpu16
-version:             0.1.0.0
-synopsis:            Initial project template from stack
-description:         Please see README.md
+version:             0.1.0.1
+synopsis:            DCPU-16 Emulator & Assembler
+description:         DCPU-16 Emulator & Assembler
 homepage:            https://github.com/githubuser/dcpu16#readme
 license:             BSD3
 license-file:        LICENSE
