diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -15,6 +15,7 @@
   - Minor updates for dependency bounds:
 
     - 1.2.0.1 (October 27, 2020)
+    - 1.2.1 (June 2, 2021)
 
 ## 1.1.5.2 (April 15, 2019)
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 # Copyright and Authors
 
-    Copyright (C) 2012-2020 Peter Jones <pjones@devalot.com>
+    Copyright (C) 2012-2021 Peter Jones <pjones@devalot.com>
 
 # License (MIT)
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # The Movie Database (TMDb) API for Haskell
 
-[![CI](https://github.com/pjones/themoviedb/workflows/CI/badge.svg)](https://github.com/pjones/themoviedb/actions)
+[![tests](https://github.com/pjones/themoviedb/workflows/tests/badge.svg)](https://github.com/pjones/themoviedb/actions)
 [![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/pjones/themoviedb?label=release)](https://github.com/pjones/themoviedb/releases)
 [![Hackage](https://img.shields.io/hackage/v/themoviedb)](https://hackage.haskell.org/package/themoviedb)
 
diff --git a/example/Main.hs b/example/Main.hs
--- a/example/Main.hs
+++ b/example/Main.hs
@@ -14,7 +14,6 @@
 import qualified Data.Text as T
 import Data.Time (defaultTimeLocale, formatTime)
 import Network.API.TheMovieDB
-import System.Environment (getArgs, lookupEnv)
 import Text.Printf (printf)
 
 -- | Simple banner style printing of a 'Movie'.
diff --git a/themoviedb.cabal b/themoviedb.cabal
--- a/themoviedb.cabal
+++ b/themoviedb.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               themoviedb
-version:            1.2.0.1
+version:            1.2.1
 synopsis:           Haskell API bindings for http://themoviedb.org
 homepage:           https://github.com/pjones/themoviedb
 bug-reports:        https://github.com/pjones/themoviedb/issues
@@ -8,11 +8,11 @@
 license-file:       LICENSE
 author:             Peter Jones <pjones@devalot.com>
 maintainer:         Peter Jones <pjones@devalot.com>
-copyright:          Copyright: (c) 2012-2020 Peter Jones
+copyright:          Copyright: (c) 2012-2021 Peter Jones
 category:           Network, API
 stability:          stable
 build-type:         Simple
-tested-with:        GHC ==8.6.5 || ==8.8.4 || ==8.10.2
+tested-with:        GHC ==8.8.4 || ==8.10.4 || ==9.0.1
 description:
   This library provides functions for retrieving metadata
   from the <http://TheMovieDB.org> API.  Documentation
@@ -69,7 +69,7 @@
     , http-client-tls  >=0.2.2  && <0.4
     , http-types       >=0.8    && <0.13
     , mtl              >=2.1    && <2.3
-    , relude           >=0.6    && <0.8
+    , relude           ^>=1.0
     , text             >=0.11   && <1.3
     , time             >=1.5    && <1.12
 
