diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for tasty-flaky
 
+## 0.1.1.0 -- 2024-12-19
+
+* Explicit support and testing for GHC 9.12
+
 ## 0.1.0.0 -- 2024-09-24
 
 * First version
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # `tasty-flaky`
 
-This provides [`tasty`](https://hackage.haskell.org/package/tasty) integration for flaky tests, which are tests that are known to fail intermittently.
+This provides [`tasty`](https://hackage.haskell.org/package/tasty) integration for flaky tests, which are tests that are known to fail intermittently. [`tasty-flaky`](https://hackage.haskell.org/package/tasty-flaky) can be installed from Hackage.
 
 ## Example usage
 
diff --git a/tasty-flaky.cabal b/tasty-flaky.cabal
--- a/tasty-flaky.cabal
+++ b/tasty-flaky.cabal
@@ -1,18 +1,19 @@
 cabal-version:      3.4
 name:               tasty-flaky
-version:            0.1.0.0
+version:            0.1.1.0
 synopsis:           Handle flaky Tasty-based tests
 description:        Handle flaky Tasty-based tests, with configuration retry policies.
-homepage:           https://github.com/PowerweaveInc/tasty-flaky
+homepage:           https://github.com/LaurentRDC/tasty-flaky
 license:            BSD-3-Clause
 license-file:       LICENSE
 author:             Laurent René de Cotret
-maintainer:         laurent@powerweave.io
-copyright:          (c) Powerweave Inc.
+maintainer:         Laurent René de Cotret
+copyright:          (c) Laurent René de Cotret
 category:           Testing
 build-type:         Simple
-tested-with:        GHC ==9.10.1
-                     || ==9.8.2
+tested-with:        GHC ==9.12.1
+                     || ==9.10.1
+                     || ==9.8.4
                      || ==9.6.6
                      || ==9.4.8
                      || ==9.2.8
@@ -24,7 +25,7 @@
 
 source-repository head
   type:     git
-  location: https://github.com/PowerweaveInc/tasty-flaky.git
+  location: https://github.com/LaurentRDC/tasty-flaky.git
 
 
 common common-options
@@ -41,7 +42,7 @@
 library
     import:           common-options
     exposed-modules:  Test.Tasty.Flaky
-    build-depends:    base >=4.14 && <4.21
+    build-depends:    base >=4.14 && <4.22
                     , tagged >= 0.5 && <0.9
                     , retry >= 0.7 && <0.10
                     , tasty ^>=1.5
