diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 ISC License
 
-Copyright (c) 2022 Gautier DI FOLCO
+Copyright (c) 2022-2025 Gautier DI FOLCO
 
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# nonempty-wrapper-QuickCheck
+
+Create NonEmpty version of any container.
+
+`QuickCheck` `instance`.
+
+## Example:
+
+```
+type NonEmptyText = NonEmpty Text
+```
diff --git a/changelog.md b/changelog.md
new file mode 100644
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,3 @@
+# 0.1.0.1
+
+* Change license/e-mail address
diff --git a/nonempty-wrapper-quickcheck.cabal b/nonempty-wrapper-quickcheck.cabal
--- a/nonempty-wrapper-quickcheck.cabal
+++ b/nonempty-wrapper-quickcheck.cabal
@@ -1,8 +1,11 @@
 cabal-version:       3.0
 name:                nonempty-wrapper-quickcheck
-version:             0.1.0.0
+version:             0.1.0.1
+extra-doc-files:
+    README.md
+    changelog.md
 author:              Gautier DI FOLCO
-maintainer:          gautier.difolco@gmail.com
+maintainer:          foss@difolco.dev
 category:            Data
 build-type:          Simple
 license:             ISC
@@ -10,7 +13,7 @@
 synopsis:            QuickCheck instance for 'NonEmpty'
 description:         QuickCheck instance for 'NonEmpty'.
 Homepage:            http://github.com/blackheaven/nonempty-wrapper/nonempty-wrapper-quickcheck
-tested-with:         GHC==9.2.2, GHC==9.0.2, GHC==8.10.7
+tested-with:         GHC==9.12.1, GHC==9.10.2, GHC==9.8.4, GHC==9.6.7, GHC==9.4.8, GHC==9.2.8
 
 library
   default-language:   Haskell2010
diff --git a/src/Test/QuickCheck/Instances/NonEmpty.hs b/src/Test/QuickCheck/Instances/NonEmpty.hs
--- a/src/Test/QuickCheck/Instances/NonEmpty.hs
+++ b/src/Test/QuickCheck/Instances/NonEmpty.hs
@@ -4,9 +4,9 @@
 -- |
 -- Module        : Test.QuickCheck.Instances.NonEmpty
 -- Copyright     : Gautier DI FOLCO
--- License       : BSD2
+-- License       : ISC
 --
--- Maintainer    : Gautier DI FOLCO <gautier.difolco@gmail.com>
+-- Maintainer    : Gautier DI FOLCO <foss@difolco.dev>
 -- Stability     : Unstable
 -- Portability   : GHC
 --
@@ -16,10 +16,10 @@
   )
 where
 
+import Data.Maybe (maybeToList)
 import Data.NonEmpty
 import Data.Proxy
 import Test.QuickCheck hiding (getNonEmpty)
-import Data.Maybe (maybeToList)
 
 instance
   ( Arbitrary a,
