diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -19,3 +19,27 @@
 Details on official releases are on [Hackage](https://hackage.haskell.org/package/hPDB)
 
 This package is also a part of [Stackage](http://daniel-diaz.github.io/stackagelist/) - a stable subset of Hackage.
+
+Projects for the future:
+------------------------
+
+Please let me know if you would be willing to push the project further.
+
+In particular one may considering these features:
+
+* Migrate out of `text-format`, since it gives portability trouble, and slows things down when printing.
+* Migrate from `AC-Vector` to another vector library:
+    - `vector-space`
+    - or `linear`
+* Use `lens` to facilitate access to the data structures.
+    - torsion angles within protein/RNA chain.
+* Add Octree to the default data structure (with automatic update.)
+* Write a combinator library for generic fast parsing.
+* Checking whether GHC 7.8 improved efficiency of fixed point arithmetic,
+since PDB coordinates have dynamic range of just ~2^20 bits, with smallest
+step of 0.001.
+* Implement basic spatial operations of RMS superposition (with SVD),
+affine transform on a substructure.
+* Class-based wrappers showing Structure-Model-Chain-Residue-Atom interface
+with possible wrapping of Repa/Accelerate arrays for fast computation.
+
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,5 +1,8 @@
 -*-Changelog-*-
 
+1.2.0.1  Dec 2014
+	* Relaxed upper bounds
+
 1.2.0  May 2014
 	* Iterable 3.0
 
diff --git a/hPDB.cabal b/hPDB.cabal
--- a/hPDB.cabal
+++ b/hPDB.cabal
@@ -1,5 +1,5 @@
 name:                hPDB
-version:             1.2.0
+version:             1.2.0.1
 synopsis:            Protein Databank file format library
 homepage:            https://github.com/BioHaskell/hPDB
 stability:           stable
@@ -53,11 +53,11 @@
                due to GHC bug #5289:
                .
                http://ghc.haskell.org/trac/ghc/ticket/5289
-  default: True
+  default: False
 
 Library
   ghc-options:      -fspec-constr-count=4 -O3 
-  build-depends:    base>=4.0, base <4.8, ghc-prim, directory, mtl, template-haskell, vector, AC-Vector, containers, deepseq, QuickCheck >= 2.5.0.0, text>=0.11.1.13, iterable >= 3.0, tagged >= 0.7, parallel >= 3.0.0.0, bytestring, zlib, Octree>= 0.5
+  build-depends:    base>=4.0, base <4.9, ghc-prim, directory, mtl, template-haskell, vector, AC-Vector, containers, deepseq, QuickCheck >= 2.5.0.0, text>=0.11.1.13, iterable >= 3.0, tagged >= 0.7, parallel >= 3.0.0.0, bytestring, zlib, Octree>= 0.5
   if flag(have-sse2)
     ghc-options: -msse2 
   if flag(have-mmap)
