diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,5 +8,8 @@
 
 This allows you to do interactive probabilistic (i.e. involving randomness) programs,
 and at the same time perform online inference, or realtime machine learning.
+
 An example for this is given in `rhine-bayes/app/Main.hs`,
 where inference is performed both on simulated values as well as external input given by the user.
+
+To read more, have a look at https://www.tweag.io/blog/2023-10-12-rhine-bayes/.
diff --git a/rhine-bayes.cabal b/rhine-bayes.cabal
--- a/rhine-bayes.cabal
+++ b/rhine-bayes.cabal
@@ -1,5 +1,5 @@
 name: rhine-bayes
-version: 1.4.0.1
+version: 1.5
 synopsis: monad-bayes backend for Rhine
 description:
   This package provides a backend to the @monad-bayes@ library,
@@ -26,18 +26,18 @@
 source-repository this
   type: git
   location: git@github.com:turion/rhine.git
-  tag: v1.4
+  tag: v1.5
 
 library
   exposed-modules: FRP.Rhine.Bayes
   other-modules: Data.Automaton.Bayes
   build-depends:
     automaton,
-    base >=4.14 && <4.20,
+    base >=4.16 && <4.21,
     log-domain >=0.12,
     mmorph ^>=1.2,
     monad-bayes ^>=1.3,
-    rhine ^>=1.4,
+    rhine ^>=1.5,
     transformers >=0.5
 
   hs-source-dirs: src
@@ -66,13 +66,13 @@
   hs-source-dirs: app
   build-depends:
     automaton,
-    base >=4.14 && <4.20,
+    base >=4.16 && <4.21,
     log-domain,
     mmorph,
     monad-bayes,
     rhine,
     rhine-bayes,
-    rhine-gloss ^>=1.4,
+    rhine-gloss ^>=1.5,
     time,
     transformers
 
