diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+2024-12-07 Ivan Perez <ivan.perez@keera.co.uk>
+    * Version bump (0.14.12) (#319).
+    * Re-export missing definitions (#318).
+
 2024-10-07 Ivan Perez <ivan.perez@keera.co.uk>
     * Version bump (0.14.11) (#310).
     * Add new publications by Schmidli et al. (#306).
diff --git a/Yampa.cabal b/Yampa.cabal
--- a/Yampa.cabal
+++ b/Yampa.cabal
@@ -30,7 +30,7 @@
 build-type:    Simple
 
 name:          Yampa
-version:       0.14.11
+version:       0.14.12
 author:        Henrik Nilsson, Antony Courtney
 maintainer:    Ivan Perez (ivan.perez@keera.co.uk)
 homepage:      https://github.com/ivanperez-keera/Yampa/
diff --git a/src/FRP/Yampa.hs b/src/FRP/Yampa.hs
--- a/src/FRP/Yampa.hs
+++ b/src/FRP/Yampa.hs
@@ -204,6 +204,16 @@
     , takeEvents
     , dropEvents
 
+      -- ** Hybrid SF combinators
+    , snap
+    , snapAfter
+    , sample
+    , sampleWindow
+
+      -- ** Repetition and switching
+    , recur
+    , andThen
+
       -- ** Pointwise functions on events
     , noEvent
     , noEventFst
@@ -245,11 +255,21 @@
     , pSwitch,  dpSwitch
     , rpSwitch, drpSwitch
 
+      -- ** Parallel composition/switching (lists)
+      -- *** Parallel composition/switching with zip routing (lists)
+    , parZ
+    , pSwitchZ,  dpSwitchZ
+    , rpSwitchZ, drpSwitchZ
+
+      -- *** Parallel composition/switching with replication (lists)
+    , parC
+
       -- * Discrete to continuous-time signal functions
       -- ** Wave-form generation
     , hold
     , dHold
     , trackAndHold
+    , dTrackAndHold
 
       -- ** Accumulators
     , accum
@@ -264,10 +284,15 @@
       -- ** Basic delays
     , pre
     , iPre
+    , fby
 
       -- ** Timed delays
     , delay
 
+      -- * Conditional
+      -- ** Guards and automata-oriented combinators
+    , provided
+
       -- ** Variable delay
     , pause
 
@@ -314,9 +339,30 @@
     , evalAt
     , evalFuture
 
+      -- * Tasks
+      -- ** The Task type
+    , Task
+    , mkTask
+    , runTask
+    , runTask_
+    , taskToSF
+
+      -- ** Basic tasks
+    , constT
+    , sleepT
+    , snapT
+
+    -- ** Basic tasks combinators
+    , timeOut
+    , abortWhen
+
       -- * Auxiliary definitions
       --   Reverse function composition and arrow plumbing aids
     , dup
+    , arr2
+    , arr3
+    , arr4
+    , arr5
 
       -- * Re-exported module, classes, and types
     , module Control.Arrow
@@ -329,7 +375,7 @@
 import Data.VectorSpace
 
 -- Internal modules
-import FRP.Yampa.Arrow (dup)
+import FRP.Yampa.Arrow
 import FRP.Yampa.Basic
 import FRP.Yampa.Conditional
 import FRP.Yampa.Delays
@@ -343,4 +389,5 @@
 import FRP.Yampa.Scan
 import FRP.Yampa.Simulation
 import FRP.Yampa.Switches
+import FRP.Yampa.Task
 import FRP.Yampa.Time
