diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,13 +1,14 @@
 # Revision history for rhine
 
-The version numbering follows the package `dunai`.
-Since `rhine` reexports modules from `dunai`,
-every major version in `dunai` triggers a major version in `rhine`.
+## 0.8.1.1
 
+* Support for GHC 9.4.4
+
 ## 0.8.1
 
 * Support for GHC 9.2.4
 * Added `FirstResampling` and `Feedback` constructors to `SN`
+* Added rhine-terminal
 
 ## 0.8.0.0
 
diff --git a/rhine.cabal b/rhine.cabal
--- a/rhine.cabal
+++ b/rhine.cabal
@@ -1,6 +1,6 @@
 name:                rhine
 
-version:             0.8.1
+version:             0.8.1.1
 
 synopsis: Functional Reactive Programming with type-level clocks
 
@@ -39,6 +39,12 @@
 
 cabal-version:       1.18
 
+tested-with:
+  GHC == 8.10.7
+  GHC == 9.0.2
+  GHC == 9.2.5
+  GHC == 9.4.4
+
 source-repository head
   type:     git
   location: https://github.com/turion/rhine.git
@@ -46,8 +52,7 @@
 source-repository this
   type:     git
   location: https://github.com/turion/rhine.git
-  tag:      v0.8.1
-
+  tag:      v0.8.1.1
 
 library
   exposed-modules:
@@ -99,7 +104,7 @@
   -- other-extensions:
 
   -- Other library packages from which modules are imported.
-  build-depends:       base         >= 4.13 && < 4.17
+  build-depends:       base         >= 4.14 && < 4.18
                      , dunai        >= 0.8
                      , transformers >= 0.5
                      , time         >= 1.8
@@ -122,8 +127,9 @@
   if flag(dev)
     ghc-options: -Werror
 
-  if impl(ghc >= 8.6)
-    default-extensions: NoStarIsType
+  default-extensions:
+      NoStarIsType
+    , TypeOperators
 
   -- Base language which the package is written in.
   default-language:    Haskell2010
