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 @@
 # Wuss
 
-[![Travis CI](https://travis-ci.org/tfausak/wuss.svg?branch=master)](https://travis-ci.org/tfausak/wuss)
+[![CI](https://github.com/tfausak/wuss/workflows/CI/badge.svg)](https://github.com/tfausak/wuss/actions/new)
 [![Hackage](https://img.shields.io/hackage/v/wuss)](https://hackage.haskell.org/package/wuss)
 [![Stackage](https://www.stackage.org/package/wuss/badge/nightly?label=stackage)](https://www.stackage.org/package/wuss)
 
diff --git a/wuss.cabal b/wuss.cabal
--- a/wuss.cabal
+++ b/wuss.cabal
@@ -1,7 +1,7 @@
-cabal-version: 2.2
+cabal-version: >= 1.10
 
 name: wuss
-version: 1.1.17
+version: 1.1.18
 
 synopsis: Secure WebSocket (WSS) clients
 description:
@@ -24,34 +24,22 @@
   location: https://github.com/tfausak/wuss
   type: git
 
-common basics
+library
+  build-depends:
+    base >= 4.13.0 && < 4.16
+    , bytestring >= 0.10.10 && < 0.11
+    , connection >= 0.3.1 && < 0.4
+    , network >= 3.1.1 && < 3.2
+    , websockets >= 0.12.7 && < 0.13
   default-language: Haskell2010
+  exposed-modules: Wuss
   ghc-options:
     -Weverything
-    -Wno-all-missed-specialisations
-    -Wno-implicit-prelude
     -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
-    , bytestring >= 0.10.8 && < 0.11
-    , connection >= 0.2.6 && < 0.4
-    , network >= 2.6.3 && < 2.9 || >= 3.0.0 && < 3.2
-    , websockets >= 0.9.7 && < 0.13
-  exposed-modules: Wuss
-  hs-source-dirs: src/lib
