diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,8 +1,14 @@
 # Changelog for extensible-effects-concurrent
 
+## 0.14.3
+
+- Export the functions introduced in 0.14.2 in `Control.Eff.Concurrent`.
+
 ## 0.14.2
 
-- Add Server2 functions to spawn and _link_
+- Add `Server2` functions to spawn and _link_
+- Add a `Server2` function to defer the reply to a `Call`s called:
+  `handleCallsDeferred`
 
 ## 0.14.1
 
diff --git a/extensible-effects-concurrent.cabal b/extensible-effects-concurrent.cabal
--- a/extensible-effects-concurrent.cabal
+++ b/extensible-effects-concurrent.cabal
@@ -1,5 +1,5 @@
 name:           extensible-effects-concurrent
-version:        0.14.2
+version:        0.14.3
 description:    Please see the README on GitHub at <https://github.com/sheyll/extensible-effects-concurrent#readme>
 synopsis:       Message passing concurrency as extensible-effect
 homepage:       https://github.com/sheyll/extensible-effects-concurrent#readme
diff --git a/src/Control/Eff/Concurrent.hs b/src/Control/Eff/Concurrent.hs
--- a/src/Control/Eff/Concurrent.hs
+++ b/src/Control/Eff/Concurrent.hs
@@ -157,13 +157,16 @@
                                                 )
 import           Control.Eff.Concurrent.Api.Server2
                                                 ( spawnApiServer
+                                                , spawnLinkApiServer
                                                 , spawnApiServerStateful
                                                 , spawnApiServerEffectful
+                                                , spawnLinkApiServerEffectful
                                                 , CallbackResult(..)
                                                 , MessageCallback(..)
                                                 , handleCasts
                                                 , handleCalls
                                                 , handleCastsAndCalls
+                                                , handleCallsDeferred
                                                 , handleMessages
                                                 , handleSelectedMessages
                                                 , handleAnyMessages
