diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -10,3 +10,7 @@
 ## 1.0.0.0 - 2018-12-20
 
 - Initial release
+
+## 1.0.0.2 - 2020-04-18
+
+Tightened dependency version bounds
diff --git a/license.txt b/license.txt
--- a/license.txt
+++ b/license.txt
@@ -1,4 +1,4 @@
-Copyright 2018 Typeclass Consulting, LLC
+Copyright 2019 Typeclass Consulting, LLC
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
diff --git a/stripe-scotty.cabal b/stripe-scotty.cabal
--- a/stripe-scotty.cabal
+++ b/stripe-scotty.cabal
@@ -1,12 +1,13 @@
 name: stripe-scotty
-version: 1.0.0.0
+version: 1.0.0.2
 
 synopsis: Listen for Stripe webhook events with Scotty
 category: Web
 
 description:
     This package provides support for writing a
-    <https://stripe.com/ Stripe> webhook server using Scotty.
+    <https://stripe.com/ Stripe> webhook server using
+    <https://hackage.haskell.org/package/scotty Scotty>.
 
 homepage:    https://github.com/typeclasses/stripe
 bug-reports: https://github.com/typeclasses/stripe/issues
@@ -14,13 +15,13 @@
 author:     Chris Martin
 maintainer: Chris Martin, Julie Moronuki
 
-copyright: 2018 Typeclass Consulting, LLC
+copyright: 2019 Typeclass Consulting, LLC
 license: MIT
 license-file: license.txt
 
 build-type: Simple
 cabal-version: >=1.10
-tested-with: GHC==8.2.2, GHC==8.4.3, GHC==8.6.1
+tested-with: GHC==8.2.2, GHC==8.4.4, GHC==8.6.3, GHC==8.8.1
 
 extra-source-files:
     changelog.md
@@ -33,12 +34,12 @@
         Stripe.Scotty
 
     build-depends:
-        aeson
-      , base >=4.10 && <5
-      , bytestring
-      , http-types
-      , scotty
-      , stripe-concepts
-      , stripe-signature
-      , text
-      , unordered-containers
+        aeson >=1.4 && <1.5
+      , base >=4.10 && <4.14
+      , bytestring >=0.10 && <0.11
+      , http-types >=0.12 && <0.13
+      , scotty >=0.11 && <0.12
+      , stripe-concepts >=1.0 && <1.1
+      , stripe-signature >=1.0 && <1.1
+      , text >=1.2 && <1.3
+      , unordered-containers >=0.2 && <0.3
