diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,4 @@
+* 0.1.3.0 (17 May 2022)
+
+    - Test with GHC 8.6 through 9.2
+    - Update maintainer and source repository information
diff --git a/lazy-search.cabal b/lazy-search.cabal
--- a/lazy-search.cabal
+++ b/lazy-search.cabal
@@ -1,32 +1,33 @@
 name:                lazy-search
-version:             0.1.2.1
+version:             0.1.3.0
 synopsis:            Finds values satisfying a lazy predicate
-description:         
+description:
   This library can be used as a property based testing driver, and more
-  generally to find values satisfying a predicate (@a -> Bool@). This 
-  is done by a size bounded search, and it uses the laziness of the 
-  predicate to speed up the search by avoiding isomorphic values. 
+  generally to find values satisfying a predicate (@a -> Bool@). This
+  is done by a size bounded search, and it uses the laziness of the
+  predicate to speed up the search by avoiding isomorphic values.
   .
-  This is similar to "LazySmallCheck" but uses size instead of depth 
-  and a faster algorithm. 
+  This is similar to "LazySmallCheck" but uses size instead of depth
+  and a faster algorithm.
 license:             BSD3
 license-file:        LICENSE
 author:              Jonas Duregard
-maintainer:          jonas.duregard@chalmers.se
--- copyright:           
+maintainer:          byorgey@gmail.com
+-- copyright:
 category:            Testing
 build-type:          Simple
--- extra-source-files:  
+extra-source-files:  CHANGELOG.md
 cabal-version:       >=1.10
+tested-with:         GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.2
 
 source-repository head
   type:      git
-  location:  https://github.com/JonasDuregard/lazy-search
+  location:  https://github.com/size-based/lazy-search
 
 library
   exposed-modules:     Data.Coolean, Control.Search
-  -- other-modules:       
-  -- other-extensions:    
+  -- other-modules:
+  -- other-extensions:
   build-depends:       base >=4.7 && <5, size-based >=0.1 && <0.2
   hs-source-dirs:      src
   default-language:    Haskell2010
