diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8bef17b5a..431e83a2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+## v1.9.1 (Unreleased)
+- Add default version in `TaskOrchestrationContext` by @halspang in ([#408](https://github.com/microsoft/durabletask-dotnet/pull/408))
+
## v1.9.0
- Fix schedule sample logging setup by @YunchuWang in ([#392](https://github.com/microsoft/durabletask-dotnet/pull/392))
diff --git a/src/Abstractions/TaskOrchestrationContext.cs b/src/Abstractions/TaskOrchestrationContext.cs
index 6bdbe1588..45199d809 100644
--- a/src/Abstractions/TaskOrchestrationContext.cs
+++ b/src/Abstractions/TaskOrchestrationContext.cs
@@ -63,7 +63,7 @@ public abstract class TaskOrchestrationContext
///
/// Gets the version of the current orchestration instance, which was set when the instance was created.
///
- public abstract string Version { get; }
+ public virtual string Version => string.Empty;
///
/// Gets the entity feature, for interacting with entities.