diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,12 @@
 #Change Log
-###0.8.2
+##0.8.3
+* Removed most upper bounds on dependencies in our cabal file to avoid stackage version madness.
+
+##0.8.2
 * Added a `saveScreenshot` command, for conenience, which writes the results of the `screenshot` command directly to a given file path.
 * Added new `WebDriver` instance for `ExceptT`.
 
-###0.8.1
+##0.8.1
 * Previously internal convenience functions `noReturn` and `ignoreReturn` are now exported in Test.WebDriver.JSON
 * `elemInfo` is now deprecated due to it being phased out in the Marionette (Firefox) driver. It will likely be removed once Selenium 4 is released.
 * Fixed an issue causing PAC settings to not work.  
diff --git a/webdriver.cabal b/webdriver.cabal
--- a/webdriver.cabal
+++ b/webdriver.cabal
@@ -1,5 +1,5 @@
 Name: webdriver
-Version: 0.8.2
+Version: 0.8.3
 Cabal-Version: >= 1.10
 License: BSD3
 License-File: LICENSE
@@ -44,28 +44,28 @@
   if flag(developer)
     cpp-options: -DCABAL_BUILD_DEVELOPER
   build-depends:   base == 4.*
-                 , aeson >= 0.6.2.0 && < 0.12
-                 , http-client >= 0.3 && < 0.5
-                 , http-types >= 0.8 && < 0.10
-                 , text >= 0.11.3 && < 1.3
-                 , bytestring >= 0.9 && < 0.11
-                 , attoparsec >= 0.10 && < 0.14
-                 , base64-bytestring >= 1.0 && < 1.1
-                 , transformers >= 0.4 && < 0.5
-                 , monad-control >= 0.3 && < 1.1
-                 , transformers-base >= 0.1 && < 1.0
-                 , lifted-base >= 0.1 && < 0.3
-                 , zip-archive >= 0.1.1.8 && < 0.3
-                 , directory == 1.*
-                 , filepath == 1.*
-                 , directory-tree >= 0.11 && < 0.13
-                 , temporary >= 1.0 && < 2.0
-                 , time == 1.*
-                 , unordered-containers >= 0.1.3 && < 0.4
-                 , vector >= 0.3 && < 0.12
-                 , exceptions >= 0.4 && < 0.9
-                 , scientific >= 0.2 && < 0.4
-                 , data-default-class < 0.1
+                 , aeson >= 0.6.2.0
+                 , http-client >= 0.3
+                 , http-types >= 0.8
+                 , text >= 0.11.3
+                 , bytestring >= 0.9
+                 , attoparsec >= 0.10
+                 , base64-bytestring >= 1.0
+                 , transformers >= 0.4
+                 , monad-control >= 0.3
+                 , transformers-base >= 0.1
+                 , lifted-base >= 0.1
+                 , zip-archive >= 0.1.1.8
+                 , directory > 1.0
+                 , filepath > 1.0
+                 , directory-tree >= 0.11
+                 , temporary >= 1.0
+                 , time > 1.0
+                 , unordered-containers >= 0.1.3
+                 , vector >= 0.3
+                 , exceptions >= 0.4
+                 , scientific >= 0.2
+                 , data-default-class
                  
   if flag(network-uri)
       build-depends: network-uri >= 2.6, network >= 2.6
