diff --git a/NtApiDotNet/NtApiDotNet.nuspec b/NtApiDotNet/NtApiDotNet.nuspec
index 833a73f82..90f08fbf2 100644
--- a/NtApiDotNet/NtApiDotNet.nuspec
+++ b/NtApiDotNet/NtApiDotNet.nuspec
@@ -11,21 +11,28 @@
false
A .NET class library to access native NT API system calls
-1.1.17
+1.1.19
+--------
+* Fix for bug in NtWaitTimeout not creating infinite waits.
+* Added some new NTSTATUS codes and break apart the status.
+* Added some new FSCTL codes.
+
+1.1.18.1
+--------
+* Added missing release notes.
+
+1.1.18
------
-* Added methods to get AppModel policy from a token.
-* Added Start-Win32ChildProcess
-* Default to a version of DbgHelp if installed to the NtObjectManager directory under x86 or x64.
-* Added some setters to token properties.
-* Added a fix for a memory corruption issue in getting NT type information on 32 bit platforms (from 1orenz0).
-* Added option to parse out RPC clients in Get-RpcServer.
-* Fixed performance issue with section viewer and the corrupter.
-* Added a valid length property to NtMappedSection.
-* Added Get-NtObjectFromHandle cmdlet.
-* Added Copy-NtToken function.
-* Added enumeration for device characteristics.
-* Fixed path resolving for file paths.
-* Added Get-RpcAlpcServer cmdlet.
+* Added better support for transaction objects including some cmdlets.
+* Added general QueryInformation and SetInformation methods to a number of objects.
+* Added side channel isolation mitigation policy.
+* Added more FS volume information classes.
+* Added extended section/memory functions.
+* Added a few missing NDR type formats.
+* Added BNO isolation process attribute.
+* Added new types to separate out named pipes from normal files.
+* Added Start-NtFileOplock.
+* Added support for absolute security descriptors.
Copyright Google Inc. 2017
syscalls
diff --git a/NtApiDotNet/Properties/AssemblyInfo.cs b/NtApiDotNet/Properties/AssemblyInfo.cs
index 198e8f91e..20f063d10 100644
--- a/NtApiDotNet/Properties/AssemblyInfo.cs
+++ b/NtApiDotNet/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.1.18.0")]
-[assembly: AssemblyInformationalVersion("1.1.18")]
\ No newline at end of file
+[assembly: AssemblyFileVersion("1.1.19")]
+[assembly: AssemblyInformationalVersion("1.1.19")]
\ No newline at end of file
diff --git a/NtObjectManager/NtObjectManager.psd1 b/NtObjectManager/NtObjectManager.psd1
index b9aedb3ec..1fd11b686 100644
--- a/NtObjectManager/NtObjectManager.psd1
+++ b/NtObjectManager/NtObjectManager.psd1
@@ -18,7 +18,7 @@
RootModule = 'NtObjectManager.psm1'
# Version number of this module.
-ModuleVersion = '1.1.18'
+ModuleVersion = '1.1.19'
# Supported PSEditions
# CompatiblePSEditions = @()
@@ -104,7 +104,17 @@ PrivateData = @{
ProjectUri = 'https://github.com/google/sandbox-attacksurface-analysis-tools'
# ReleaseNotes of this module
- ReleaseNotes = '1.1.18
+ ReleaseNotes = '1.1.19
+--------
+* Fix for bug in NtWaitTimeout not creating infinite waits.
+* Added some new NTSTATUS codes and break apart the status.
+* Added some new FSCTL codes.
+
+1.1.18.1
+--------
+* Added missing release notes.
+
+1.1.18
------
* Added better support for transaction objects including some cmdlets.
* Added general QueryInformation and SetInformation methods to a number of objects.
diff --git a/NtObjectManager/Properties/AssemblyInfo.cs b/NtObjectManager/Properties/AssemblyInfo.cs
index 62f6162eb..8b6354129 100644
--- a/NtObjectManager/Properties/AssemblyInfo.cs
+++ b/NtObjectManager/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.1.18.0")]
-[assembly: AssemblyInformationalVersion("1.1.18")]
+[assembly: AssemblyFileVersion("1.1.19.0")]
+[assembly: AssemblyInformationalVersion("1.1.19")]
diff --git a/README.txt b/README.txt
index 0ff4526b5..8b8ffdd31 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.19
+--------
+* Fix for bug in NtWaitTimeout not creating infinite waits.
+* Added some new NTSTATUS codes and break apart the status.
+* Added some new FSCTL codes.
+
+1.1.18.1
+--------
+* Added missing release notes.
+
1.1.18
------
* Added better support for transaction objects including some cmdlets.