diff --git a/NtApiDotNet/NtApiDotNet.Core.csproj b/NtApiDotNet/NtApiDotNet.Core.csproj
index 95dca6386..0ea2ab09f 100644
--- a/NtApiDotNet/NtApiDotNet.Core.csproj
+++ b/NtApiDotNet/NtApiDotNet.Core.csproj
@@ -7,7 +7,7 @@
James Forshaw
Google Inc.
NtApiDotNet
- 1.1.22.0
+ 1.1.23.0
Copyright © Google Inc. 2016, 2017, 2018, 2019
1.0.0.0
https://www.apache.org/licenses/LICENSE-2.0
diff --git a/NtApiDotNet/Properties/AssemblyInfo.cs b/NtApiDotNet/Properties/AssemblyInfo.cs
index bb53d5802..5e996c559 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.22.0")]
-[assembly: AssemblyInformationalVersion("1.1.22")]
\ No newline at end of file
+[assembly: AssemblyFileVersion("1.1.23.0")]
+[assembly: AssemblyInformationalVersion("1.1.23")]
\ No newline at end of file
diff --git a/NtObjectManager/NtObjectManager.Core.csproj b/NtObjectManager/NtObjectManager.Core.csproj
index cb16ff432..8f38b0b80 100644
--- a/NtObjectManager/NtObjectManager.Core.csproj
+++ b/NtObjectManager/NtObjectManager.Core.csproj
@@ -7,7 +7,7 @@
James Forshaw
Google Inc.
NtObjectManager
- 1.1.22.0
+ 1.1.23.0
Copyright © Google Inc. 2016, 2017, 2018, 2019
1.0.0.0
https://www.apache.org/licenses/LICENSE-2.0
diff --git a/NtObjectManager/NtObjectManager.psd1 b/NtObjectManager/NtObjectManager.psd1
index 7bb2c3d5f..1f520983a 100644
--- a/NtObjectManager/NtObjectManager.psd1
+++ b/NtObjectManager/NtObjectManager.psd1
@@ -18,7 +18,7 @@
RootModule = 'NtObjectManager.psm1'
# Version number of this module.
-ModuleVersion = '1.1.22'
+ModuleVersion = '1.1.23'
# ID used to uniquely identify this module
GUID = 'ac251c97-67a6-4bc4-bb8a-5ae300e93030'
@@ -114,12 +114,18 @@ PrivateData = @{
ProjectUri = 'https://github.com/googleprojectzero/sandbox-attacksurface-analysis-tools'
# ReleaseNotes of this module
- ReleaseNotes = '1.1.22
+ ReleaseNotes = '1.1.23
--------
-* Removed old standalone utilities, everything should be accessible from PowerShell.
-* Added Test-NetworkAccess cmdlet to replace CheckNetworkAccess utility.
-* Added Set-NtFileHardlink cmdlet.
-* Various fixes for RPC client code.
+* Added basic ETW APIs.
+* Added new thread properties.
+* Added Close-NtObject function.
+* Added Get-AccessibleScheduledTask cmdlet.
+* Added typing for New-ExecutionAlias and renamed to Set-ExecutionAlias.
+* Added Compare-RpcServer.
+* Fixed handling of FQBN token security attributes.
+* Added option to Format-RpcClient to output to a directory.
+* Added Select-RpcServer cmdlet.
+* Added RPC ALPC port brute force.
'
# External dependent modules of this module
diff --git a/NtObjectManager/Properties/AssemblyInfo.cs b/NtObjectManager/Properties/AssemblyInfo.cs
index 3ffa2214b..dbacef591 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.22.0")]
-[assembly: AssemblyInformationalVersion("1.1.22")]
+[assembly: AssemblyFileVersion("1.1.23.0")]
+[assembly: AssemblyInformationalVersion("1.1.23")]
diff --git a/README.txt b/README.txt
index 7f93a3449..cc305d397 100644
--- a/README.txt
+++ b/README.txt
@@ -46,6 +46,19 @@ Thanks to the people who were willing to test it and give feedback:
Release Notes:
+1.1.23
+--------
+* Added basic ETW APIs.
+* Added new thread properties.
+* Added Close-NtObject function.
+* Added Get-AccessibleScheduledTask cmdlet.
+* Added typing for New-ExecutionAlias and renamed to Set-ExecutionAlias.
+* Added Compare-RpcServer.
+* Fixed handling of FQBN token security attributes.
+* Added option to Format-RpcClient to output to a directory.
+* Added Select-RpcServer cmdlet.
+* Added RPC ALPC port brute force.
+
1.1.22
--------
* Removed old standalone utilities, everything should be accessible from PowerShell.