diff --git a/.gitignore b/.gitignore
new file mode 100644
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+_darcs
+dist
+tags
diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+3.1.3
+-----
+* Removed upper bounds on my own intra-package dependencies
+
 3.1.1
 -----
 * Added Documentation!
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2011 Edward Kmett
+Copyright 2011-2013 Edward Kmett
 
 All rights reserved.
 
diff --git a/profunctors.cabal b/profunctors.cabal
--- a/profunctors.cabal
+++ b/profunctors.cabal
@@ -1,6 +1,6 @@
 name:          profunctors
 category:      Control, Categories
-version:       3.1.2
+version:       3.1.3
 license:       BSD3
 cabal-version: >= 1.6
 license-file:  LICENSE
@@ -9,13 +9,14 @@
 stability:     experimental
 homepage:      http://github.com/ekmett/profunctors/
 bug-reports:   http://github.com/ekmett/profunctors/issues
-copyright:     Copyright (C) 2011 Edward A. Kmett
+copyright:     Copyright (C) 2011-2013 Edward A. Kmett
 synopsis:      Haskell 98 Profunctors
 description:   Haskell 98 Profunctors
 build-type:    Simple
 extra-source-files:
-  .travis.yml
   .ghci
+  .gitignore
+  .travis.yml
   .vim.custom
   README.markdown
   CHANGELOG.markdown
@@ -27,11 +28,12 @@
 library
   build-depends:
     base          == 4.*,
-    comonad       == 3.0.*,
-    tagged        >= 0.4.4 && < 0.5
+    comonad       >= 3,
+    tagged        >= 0.4.4
 
-  hs-source-dirs:  src
   exposed-modules:
     Data.Profunctor
     Data.Profunctor.Unsafe
+
   ghc-options:     -Wall
+  hs-source-dirs:  src
