diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,8 @@
+### v0.1.0.1
+
+Upgrade to `lens-4.7`; this incurs a dependency on `lens-action` since
+`Control.Lens.Action` has been removed from the main package.
+
+### v0.1.0.0
+
+Initial release
diff --git a/aws-lambda.cabal b/aws-lambda.cabal
--- a/aws-lambda.cabal
+++ b/aws-lambda.cabal
@@ -1,6 +1,7 @@
 name:                aws-lambda
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Haskell bindings for AWS Lambda
+homepage:            https://github.com/alephcloud/hs-aws-lambda
 license:             Apache-2.0
 license-file:        LICENSE
 author:              Jon Sterling
@@ -9,7 +10,12 @@
 category:            Network, Cloud
 build-type:          Simple
 cabal-version:       >=1.10
+extra-source-files:  CHANGELOG.md
 
+source-repository head
+  type:     git
+  location: https://github.com/alephcloud/hs-aws-lambda.git
+
 library
   exposed-modules:     Aws.Lambda,
                        Aws.Lambda.Core,
@@ -37,7 +43,8 @@
                        filepath >= 1.3.0.2,
                        http-types >=0.8.5,
                        http-client >=0.4.6,
-                       lens >=4.6 && <4.7,
+                       lens >=4.7,
+                       lens-action >=0.1.0.1,
                        lens-aeson >=1.0.0.3,
                        mtl >=2.1.3.1,
                        old-locale >=1.0.0.6,
diff --git a/src/Aws/Lambda/Core.hs b/src/Aws/Lambda/Core.hs
--- a/src/Aws/Lambda/Core.hs
+++ b/src/Aws/Lambda/Core.hs
@@ -66,6 +66,7 @@
 
 import Control.Applicative
 import Control.Lens
+import Control.Lens.Action
 import Control.Monad.Catch
 import Control.Monad.Trans
 import Control.Monad.Unicode
