diff --git a/build-common/NHibernate.props b/build-common/NHibernate.props
index 6a7779692eb..4d25f049970 100644
--- a/build-common/NHibernate.props
+++ b/build-common/NHibernate.props
@@ -5,7 +5,7 @@
5.3
11
- dev
+
$(NhVersion).$(VersionPatch)
$(VersionSuffix).$(BuildNumber)
diff --git a/releasenotes.txt b/releasenotes.txt
index 0c550f8cd1c..fa079c88d83 100644
--- a/releasenotes.txt
+++ b/releasenotes.txt
@@ -1,4 +1,29 @@
-Build 5.3.10
+Build 5.3.11
+=============================
+
+Release notes - NHibernate - Version 5.3.11
+
+12 issues were resolved in this release.
+
+** Bug
+
+ * #3005 LINQ: Casting from object to TimeSpan throws
+ * #2988 Query issues when using not-found='ignore' in entity mapping
+ * #2965 Fix possible issue with logging for Linq Readonly tests
+ * #2963 Time is incompatible with bigint for TimeAsTimeSpanType
+ * #2937 NRE in linq processing of custom components
+ * #2928 Session.Refresh when entity is IFieldInterceptorAccessor throws a MappingException
+ * #2904 SQL query result not retrieved from second level cache
+ * #2876 Schema validation not working with NpgSql v5
+ * #2862 NHibernate AsyncReaderWriterLock stalls under load
+ * #2727 The session.Load(obj, id) overload can't handle proxies
+
+** Task
+
+ * #3019 Release 5.3.11
+ * #2984 Bump AsyncGenerator to 0.18.3 for 5.3 branch with fix for .net 6
+
+Build 5.3.10
=============================
Release notes - NHibernate - Version 5.3.10
diff --git a/src/NHibernate/Cache/UpdateTimestampsCache.cs b/src/NHibernate/Cache/UpdateTimestampsCache.cs
index b7c0f5cdba6..1cc282034d2 100644
--- a/src/NHibernate/Cache/UpdateTimestampsCache.cs
+++ b/src/NHibernate/Cache/UpdateTimestampsCache.cs
@@ -50,7 +50,7 @@ public UpdateTimestampsCache(Settings settings, IDictionary prop
///
/// The to use.
/// Locker to use.
- public UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
+ internal UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
{
log.Info("starting update timestamps cache at region: {0}", cache.RegionName);
_updateTimestamps = cache;