diff --git a/NtApiDotNet/NtApiDotNet.Core.csproj b/NtApiDotNet/NtApiDotNet.Core.csproj
index d2b144769..89d450b57 100644
--- a/NtApiDotNet/NtApiDotNet.Core.csproj
+++ b/NtApiDotNet/NtApiDotNet.Core.csproj
@@ -7,7 +7,7 @@
James Forshaw
Google Inc.
NtApiDotNet
- 1.1.13.0
+ 1.1.14.0
Copyright © Google Inc. 2016, 2017, 2018
1.0.0.0
https://www.apache.org/licenses/LICENSE-2.0
diff --git a/NtApiDotNet/NtApiDotNet.nuspec b/NtApiDotNet/NtApiDotNet.nuspec
index 94777b318..fddb4a0ec 100644
--- a/NtApiDotNet/NtApiDotNet.nuspec
+++ b/NtApiDotNet/NtApiDotNet.nuspec
@@ -11,6 +11,16 @@
false
A .NET class library to access native NT API system calls
+1.1.14
+------
+* Added basic support for transaction objects.
+* Minor fixes for ALPC support.
+* Implemented OOP NDR parsing.
+* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
+* Fix for display of NDR arrays from 1orenz0.
+* Print NDR correlation descriptors during formatting.
+* Added support to read out COM proxies.
+
1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.
diff --git a/NtApiDotNet/Properties/AssemblyInfo.cs b/NtApiDotNet/Properties/AssemblyInfo.cs
index 3f23f1a24..148d2f83e 100644
--- a/NtApiDotNet/Properties/AssemblyInfo.cs
+++ b/NtApiDotNet/Properties/AssemblyInfo.cs
@@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.1.13.0")]
-[assembly: AssemblyInformationalVersion("1.1.13")]
\ No newline at end of file
+[assembly: AssemblyFileVersion("1.1.14.0")]
+[assembly: AssemblyInformationalVersion("1.1.14")]
\ No newline at end of file
diff --git a/NtObjectManager/NtObjectManager.Core.csproj b/NtObjectManager/NtObjectManager.Core.csproj
index a0bc678ec..3033f7b08 100644
--- a/NtObjectManager/NtObjectManager.Core.csproj
+++ b/NtObjectManager/NtObjectManager.Core.csproj
@@ -7,7 +7,7 @@
James Forshaw
Google Inc.
NtObjectManager
- 1.1.13.0
+ 1.1.14.0
Copyright © Google Inc. 2016, 2017, 2018
1.0.0.0
https://www.apache.org/licenses/LICENSE-2.0
diff --git a/NtObjectManager/NtObjectManager.psd1 b/NtObjectManager/NtObjectManager.psd1
index a5ef5289f..d895af99a 100644
--- a/NtObjectManager/NtObjectManager.psd1
+++ b/NtObjectManager/NtObjectManager.psd1
@@ -18,7 +18,7 @@
RootModule = 'NtObjectManager.psm1'
# Version number of this module.
-ModuleVersion = '1.1.13'
+ModuleVersion = '1.1.14'
# Supported PSEditions
# CompatiblePSEditions = @()
@@ -98,7 +98,16 @@ PrivateData = @{
ProjectUri = 'https://github.com/google/sandbox-attacksurface-analysis-tools'
# ReleaseNotes of this module
- ReleaseNotes = '1.1.13
+ ReleaseNotes = '1.1.14
+------
+* Added basic support for transaction objects.
+* Minor fixes for ALPC support.
+* Implemented OOP NDR parsing.
+* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
+* Fix for display of NDR arrays from 1orenz0.
+* Print NDR correlation descriptors during formatting.
+* Added support to read out COM proxies.
+1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.
* Extended support for Job objects.
diff --git a/NtObjectManager/Properties/AssemblyInfo.cs b/NtObjectManager/Properties/AssemblyInfo.cs
index 72ae4f718..d9d8e5ae7 100644
--- a/NtObjectManager/Properties/AssemblyInfo.cs
+++ b/NtObjectManager/Properties/AssemblyInfo.cs
@@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.1.13.0")]
-[assembly: AssemblyInformationalVersion("1.1.13")]
+[assembly: AssemblyFileVersion("1.1.14.0")]
+[assembly: AssemblyInformationalVersion("1.1.14")]
diff --git a/README.txt b/README.txt
index 56d7257b8..f09ab897b 100644
--- a/README.txt
+++ b/README.txt
@@ -21,6 +21,16 @@ with .NET Core 2.0 by building the specific project files.
Release Notes:
+1.1.14
+------
+* Added basic support for transaction objects.
+* Minor fixes for ALPC support.
+* Implemented OOP NDR parsing.
+* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
+* Fix for display of NDR arrays from 1orenz0.
+* Print NDR correlation descriptors during formatting.
+* Added support to read out COM proxies.
+
1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.