diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,7 +1,9 @@
-Release History
-===============
+# Release History
 
-[0.1.0] - 2020-05-08
---------------------
+## 0.1 (May 8, 2020)
 
   * Initial release
+
+  * Minor updates:
+
+    - 0.1.0.1 (October 29, 2020): Update dependencies
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 Addy: a modern library for working with email addresses
 =======================================================
-
-[![addy](https://circleci.com/gh/pjones/addy.svg?style=shield)](https://app.circleci.com/github/pjones/addy/pipelines)
+[![CI](https://github.com/pjones/addy/workflows/CI/badge.svg)](https://github.com/pjones/addy/actions)
+[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/pjones/addy?label=release)](https://github.com/pjones/addy/releases)
 [![Hackage](https://img.shields.io/hackage/v/addy?logo=haskell)](https://hackage.haskell.org/package/addy)
 [![GitHub](https://img.shields.io/github/license/pjones/addy)](https://github.com/pjones/addy/blob/master/LICENSE)
 
diff --git a/addy.cabal b/addy.cabal
--- a/addy.cabal
+++ b/addy.cabal
@@ -1,19 +1,19 @@
-cabal-version: 2.2
+cabal-version:      2.2
+name:               addy
+version:            0.1.0.1
+license:            BSD-2-Clause
+license-file:       LICENSE
+author:             Peter Jones <pjones@devalot.com>
+maintainer:         Peter Jones <pjones@devalot.com>
+copyright:          Copyright (c) 2019-2020 Peter Jones
+homepage:           https://github.com/pjones/addy
+bug-reports:        https://github.com/pjones/addy/issues
+category:           Text
+tested-with:        GHC ==8.6.5 || ==8.8.4 || ==8.10.2
+build-type:         Simple
+synopsis:
+  A full-featured library for parsing, validating, and rendering email addresses
 
---------------------------------------------------------------------------------
-name:          addy
-version:       0.1.0.0
-synopsis:      A full-featured library for parsing, validating, and rendering email addresses
-license:       BSD-2-Clause
-license-file:  LICENSE
-author:        Peter Jones <pjones@devalot.com>
-maintainer:    Peter Jones <pjones@devalot.com>
-copyright:     Copyright (c) 2019-2020 Peter Jones
-homepage:      https://github.com/pjones/addy
-bug-reports:   https://github.com/pjones/addy/issues
-category:      Text
-tested-with:   GHC == 8.6.5, GHC == 8.8.3
-build-type:    Simple
 description:
   A modern library for working with email addresses.  This package can
   be used to validate user input or handle various flavors of
@@ -33,9 +33,13 @@
   test/README.md
 
 --------------------------------------------------------------------------------
-common options
-  default-language: Haskell2010
+source-repository head
+  type:     git
+  location: https://github.com/pjones/addy.git
 
+--------------------------------------------------------------------------------
+common options
+  default-language:   Haskell2010
   default-extensions:
     DataKinds
     DeriveAnyClass
@@ -60,35 +64,31 @@
     TypeApplications
 
   ghc-options:
-    -Wall
-    -Wno-name-shadowing
-    -Werror=incomplete-record-updates
-    -Werror=incomplete-uni-patterns
-    -Werror=missing-home-modules
-    -Widentities
-    -Wmissing-export-lists
-    -Wredundant-constraints
+    -Wall -Wno-name-shadowing -Werror=incomplete-record-updates
+    -Werror=incomplete-uni-patterns -Werror=missing-home-modules
+    -Widentities -Wmissing-export-lists -Wredundant-constraints
 
 --------------------------------------------------------------------------------
 common dependencies
   build-depends:
-    attoparsec >= 0.13 && < 0.14,
-    base >= 4.9 && < 5.0,
-    bytestring >= 0.10 && < 0.11,
-    ip >= 1.5.1 && < 1.8,
-    lens >= 4.17 && < 5.0,
-    relude >= 0.6 && < 0.7,
-    text >= 1.2 && < 1.3,
-    text-icu >= 0.7 && < 0.8,
-    validation-selective >= 0.1 && < 0.2
+    , attoparsec            ^>=0.13
+    , base                  >=4.9   && <5.0
+    , bytestring            >=0.10  && <0.12
+    , ip                    >=1.5.1 && <1.8
+    , lens                  >=4.17  && <5.0
+    , relude                >=0.6   && <0.8
+    , text                  ^>=1.2
+    , text-icu              ^>=0.7
+    , validation-selective  ^>=0.1
 
-  mixins: base hiding (Prelude)
-        , relude (Relude as Prelude)
+  mixins:
+    base hiding (Prelude),
+    relude (Relude as Prelude)
 
 --------------------------------------------------------------------------------
 library
-  import: options, dependencies
-  hs-source-dirs: src
+  import:          options, dependencies
+  hs-source-dirs:  src
   exposed-modules:
     Addy
     Addy.Internal.Char
@@ -99,22 +99,23 @@
 
 --------------------------------------------------------------------------------
 test-suite test
-  import: options, dependencies
-  type: exitcode-stdio-1.0
+  import:         options, dependencies
+  type:           exitcode-stdio-1.0
   hs-source-dirs: test
-  main-is: Main.hs
+  main-is:        Main.hs
   other-modules:
     ParserTest
     RenderTest
     TestData
+
   build-depends:
-    addy,
-    aeson >= 1.4,
-    hedgehog >= 1.0 && < 1.1,
-    http-types >= 0.12,
-    tasty >= 1.1 && < 1.3,
-    tasty-hedgehog >= 1.0 && < 1.1,
-    tasty-hunit >= 0.10 && < 0.11
+    , addy
+    , aeson           >=1.4
+    , hedgehog        ^>=1.0
+    , http-types      >=0.12
+    , tasty           >=1.1  && <1.5
+    , tasty-hedgehog  ^>=1.0
+    , tasty-hunit     ^>=0.10
 
 --------------------------------------------------------------------------------
 -- test-suite doctests
