diff --git a/LICENSE.markdown b/LICENSE.markdown
--- a/LICENSE.markdown
+++ b/LICENSE.markdown
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2020 Taylor Fausak
+Copyright (c) 2021 Taylor Fausak
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/github-release.cabal b/github-release.cabal
--- a/github-release.cabal
+++ b/github-release.cabal
@@ -1,7 +1,7 @@
-cabal-version: 2.2
+cabal-version: >= 1.10
 
 name: github-release
-version: 1.3.5
+version: 1.3.6
 
 synopsis: Upload files to GitHub releases.
 description: GitHub Release uploads files to GitHub releases.
@@ -16,51 +16,39 @@
   location: https://github.com/tfausak/github-release
   type: git
 
-common basics
+library
+  autogen-modules: Paths_github_release
+  build-depends:
+    base >= 4.13.0 && < 4.16
+    , aeson >= 1.4.7 && < 1.6
+    , burrito >= 1.2.0 && < 1.3
+    , bytestring >= 0.10.10 && < 0.11
+    , http-client >= 0.6.4 && < 0.7
+    , http-client-tls >= 0.3.5 && < 0.4
+    , http-types >= 0.12.3 && < 0.13
+    , mime-types >= 0.1.0 && < 0.2
+    , optparse-generic >= 1.3.1 && < 1.4
+    , text >= 1.2.4 && < 1.3
+    , unordered-containers >= 0.2.10 && < 0.3
   default-language: Haskell2010
+  exposed-modules: GitHubRelease
   ghc-options:
     -Weverything
-    -Wno-all-missed-specialisations
     -Wno-implicit-prelude
+    -Wno-missing-deriving-strategies
     -Wno-missing-exported-signatures
-    -Wno-missing-import-lists
     -Wno-safe
     -Wno-unsafe
-
-  if impl(ghc >= 8.8)
-    ghc-options:
-      -Wno-missing-deriving-strategies
+  hs-source-dirs: src/lib
+  other-modules: Paths_github_release
 
   if impl(ghc >= 8.10)
     ghc-options:
       -Wno-missing-safe-haskell-mode
       -Wno-prepositive-qualified-module
 
-library
-  import: basics
-
-  autogen-modules: Paths_github_release
-  build-depends:
-    base >= 4.9.0 && < 4.15
-    , aeson >= 0.11.2 && < 0.12 || >= 1.0.2 && < 1.6
-    , burrito >= 1.0.0 && < 1.3
-    , bytestring >= 0.10.8 && < 0.11
-    , http-client >= 0.4.31 && < 0.8
-    , http-client-tls >= 0.2.4 && < 0.4
-    , http-types >= 0.9.1 && < 0.13
-    , mime-types >= 0.1.0 && < 0.2
-    , optparse-generic >= 1.1.1 && < 1.5
-    , text >= 1.2.2 && < 1.3
-    , unordered-containers >= 0.2.7 && < 0.3
-  exposed-modules: GitHubRelease
-  hs-source-dirs: src/lib
-  other-modules: Paths_github_release
-
 executable github-release
-  import: basics
-
-  build-depends:
-    base -any
-    , github-release -any
+  build-depends: base, github-release
+  default-language: Haskell2010
   hs-source-dirs: src/exe
   main-is: Main.hs
