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/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -1,6 +1,6 @@
 # Derulo
 
-[![Travis CI](https://travis-ci.org/tfausak/derulo.svg?branch=master)](https://travis-ci.org/tfausak/derulo)
+[![CI](https://github.com/tfausak/derulo/workflows/CI/badge.svg)](https://github.com/tfausak/derulo/actions/new)
 [![Hackage](https://img.shields.io/hackage/v/derulo)](https://hackage.haskell.org/package/derulo)
 [![Stackage](https://www.stackage.org/package/derulo/badge/nightly?label=stackage)](https://www.stackage.org/package/derulo)
 
diff --git a/derulo.cabal b/derulo.cabal
--- a/derulo.cabal
+++ b/derulo.cabal
@@ -1,7 +1,7 @@
-cabal-version: 2.2
+cabal-version: >= 1.10
 
 name: derulo
-version: 1.0.9
+version: 1.0.10
 
 synopsis: Parse and render JSON simply.
 description: Derulo parses and renders JSON simply.
@@ -14,54 +14,39 @@
 maintainer: Taylor Fausak
 
 source-repository head
-  type: git
   location: https://github.com/tfausak/derulo
+  type: git
 
-common basics
+library
+  build-depends:
+    base >= 4.13.0 && < 4.16
   default-language: Haskell2010
+  exposed-modules: Derulo
   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
 
   if impl(ghc >= 8.10)
     ghc-options:
       -Wno-missing-safe-haskell-mode
       -Wno-prepositive-qualified-module
 
-library
-  import: basics
-
-  build-depends:
-    base >= 4.9.0 && < 4.15
-  default-language: Haskell98
-  exposed-modules: Derulo
-  hs-source-dirs: src/lib
-
 executable derulo
-  import: basics
-
-  build-depends:
-    base -any,
-    derulo -any
+  build-depends: base, derulo
+  default-language: Haskell2010
   hs-source-dirs: src/exe
   main-is: Main.hs
 
 test-suite test
-  import: basics
-
   build-depends:
     base -any
     , derulo -any
-    , HUnit >= 1.6.0 && < 1.7
+    , HUnit >= 1.6.1 && < 1.7
+  default-language: Haskell2010
   hs-source-dirs: src/test
   main-is: Main.hs
   type: exitcode-stdio-1.0
