diff --git a/core-program.cabal b/core-program.cabal
--- a/core-program.cabal
+++ b/core-program.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           core-program
-version:        0.6.5.1
+version:        0.6.6.0
 synopsis:       Opinionated Haskell Interoperability
 description:    A library to help build command-line programs, both tools and
                 longer-running daemons.
@@ -27,7 +27,7 @@
 license-file:   LICENSE
 build-type:     Simple
 tested-with:
-    GHC == 8.10.7, GHC == 9.2.5
+    GHC == 8.10.7, GHC == 9.2.7
 
 source-repository head
   type: git
diff --git a/lib/Core/Program/Context.hs b/lib/Core/Program/Context.hs
--- a/lib/Core/Program/Context.hs
+++ b/lib/Core/Program/Context.hs
@@ -79,6 +79,7 @@
     , spanNameFrom :: Rope
     , serviceNameFrom :: Maybe Rope
     , spanTimeFrom :: Time
+    , datasetFrom :: Maybe Rope
     , traceIdentifierFrom :: Maybe Trace
     , parentIdentifierFrom :: Maybe Span
     , durationFrom :: Maybe Int64
@@ -93,6 +94,7 @@
         , spanNameFrom = emptyRope
         , serviceNameFrom = Nothing
         , spanTimeFrom = epochTime
+        , datasetFrom = Nothing
         , traceIdentifierFrom = Nothing
         , parentIdentifierFrom = Nothing
         , durationFrom = Nothing
@@ -313,7 +315,7 @@
 getContext = do
     context <- ask
     pure context
-{-# INLINABLE getContext #-}
+{-# INLINEABLE getContext #-}
 
 {- |
 Run a subprogram from within a lifted @IO@ block.
