diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for edit-distance-linear
 
+## v0.2.0.2
+
+* Turn the LLVM flag off by default.
+
 ## v0.2.0.1
 
 * Made the test executable and the LLVM codegen optional.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
 # edit-distance-linear
 
 [![Build Status][travis-badge]][travis]
+[![Hackage][hackage-badge]][hackage]
 
 The pure Haskell implementation of the Levenshtein edit distance, with linear space complexity.
 
@@ -16,3 +17,5 @@
 
 [travis]:        <https://travis-ci.org/0xd34df00d/edit-distance-linear>
 [travis-badge]:  <https://travis-ci.org/0xd34df00d/edit-distance-linear.svg?branch=master>
+[hackage]:       <https://hackage.haskell.org/package/edit-distance-linear>
+[hackage-badge]: <https://img.shields.io/hackage/v/edit-distance-linear.svg>
diff --git a/edit-distance-linear.cabal b/edit-distance-linear.cabal
--- a/edit-distance-linear.cabal
+++ b/edit-distance-linear.cabal
@@ -4,11 +4,11 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 52175124e00b64f40bb9551356b58a8b08d4d0f2b7ec2366fa339ffc53e59081
+-- hash: 0b489ff94cb12c19c0af4a4810be4e49a7093658273ea2a4e46a3b02683c0807
 
 name:           edit-distance-linear
-version:        0.2.0.1
-synopsis:       Efficient implementation Levenshtein distance in linear memory.
+version:        0.2.0.2
+synopsis:       Efficient implementation of the Levenshtein edit distance in linear memory.
 description:    Please see the README on GitHub at <https://github.com/0xd34df00d/edit-distance-linear#readme>
 category:       Algorithms
 homepage:       https://github.com/0xd34df00d/edit-distance-linear#readme
@@ -30,7 +30,7 @@
 flag llvm
   description: Use the LLVM code generator (strongly recommended)
   manual: True
-  default: True
+  default: False
 
 flag with-executable
   description: Build the test executable (a fast and dirty way of benchmarking, for the package development only)
