diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,11 @@
+haskell-git-lfs (1.1.1) unstable; urgency=medium
+
+  * Expand aeson bounds to allow 1.5.x
+  * Expand http-client bounds to allow 0.7.x
+  * Improve other bounds that were too relaxed.
+
+ -- Joey Hess <id@joeyh.name>  Thu, 19 Nov 2020 12:11:00 -0400
+
 haskell-git-lfs (1.1.0) unstable; urgency=medium
 
   * Added modifyEndpointRequest, which can be used to make an Endpoint use
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/git-lfs.cabal b/git-lfs.cabal
--- a/git-lfs.cabal
+++ b/git-lfs.cabal
@@ -1,6 +1,6 @@
 Name: git-lfs
-Version: 1.1.0
-Cabal-Version: >= 1.8
+Version: 1.1.1
+Cabal-Version: >= 1.10
 License: AGPL-3
 Maintainer: Joey Hess <id@joeyh.name>
 Author: Joey Hess
@@ -17,17 +17,18 @@
 
 Library
   GHC-Options: -Wall -fno-warn-tabs
+  Default-Language: Haskell2010
   Exposed-Modules: Network.GitLFS
   Build-Depends:
     base >= 4.5 && < 5,
-    http-client >= 0.5 && <= 0.7,
-    http-types >= 0.7 && <= 0.13,
-    aeson >= 1.3 && <= 1.5,
-    network-uri >= 2.6 && <= 2.7,
-    case-insensitive >= 1.2 && <= 1.3,
-    containers >= 0.6 && <= 0.7,
-    text >= 1.2 && <= 1.3,
-    bytestring >= 0.10 && <= 0.11
+    http-client >= 0.5 && < 0.8,
+    http-types >= 0.7 && < 0.13,
+    aeson >= 1.3 && < 1.6,
+    network-uri >= 2.6 && < 2.8,
+    case-insensitive >= 1.2 && < 1.3,
+    containers >= 0.6 && < 0.7,
+    text >= 1.2 && < 1.3,
+    bytestring >= 0.10 && < 0.12
 
 source-repository head
   type: git
