diff --git a/Changelog.txt b/Changelog.txt index 7093d80..65e6630 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,8 @@ +Version 2.13 +- Fixed a rare bug which caused the database cmdlets to hang while loading indices. +- Meaningful error messages are now displayed when a dirty or downlevel ntds.dit file is encountered. +- The DSInternals.Replication library now supports incremental replication (not exposed through PowerShell). + Version 2.12 - Commandlets for ntds.dit manipulation now work on Windows 7 / Windows Server 2008 R2. - The module now requires .NET Framework 4.5.1 instead of 4.5. diff --git a/Src/Configuration/CommonAssemblyInfo.cs b/Src/Configuration/CommonAssemblyInfo.cs index 1992033..3353c8f 100644 --- a/Src/Configuration/CommonAssemblyInfo.cs +++ b/Src/Configuration/CommonAssemblyInfo.cs @@ -3,5 +3,5 @@ [assembly: AssemblyProduct("DSInternals PowerShell Module")] [assembly: AssemblyCopyright("Copyright © 2015-2016 Michael Grafnetter. All rights reserved.")] -[assembly: AssemblyVersion("2.12")] -[assembly: AssemblyFileVersion("2.12")] \ No newline at end of file +[assembly: AssemblyVersion("2.13")] +[assembly: AssemblyFileVersion("2.13")] \ No newline at end of file diff --git a/Src/Configuration/CommonAssemblyInfo.h b/Src/Configuration/CommonAssemblyInfo.h index 1a4535c..e966f0e 100644 --- a/Src/Configuration/CommonAssemblyInfo.h +++ b/Src/Configuration/CommonAssemblyInfo.h @@ -4,4 +4,4 @@ using namespace System::Reflection; [assembly:AssemblyCopyrightAttribute(L"Copyright © 2015-2016 Michael Grafnetter. All rights reserved.")]; // Note: Do not forget to change the version in app.rc files. -[assembly:AssemblyVersionAttribute("2.12")]; \ No newline at end of file +[assembly:AssemblyVersionAttribute("2.13")]; \ No newline at end of file diff --git a/Src/DSInternals.PowerShell/DSInternals.psd1 b/Src/DSInternals.PowerShell/DSInternals.psd1 index 2168bdb..ea94fa9 100644 --- a/Src/DSInternals.PowerShell/DSInternals.psd1 +++ b/Src/DSInternals.PowerShell/DSInternals.psd1 @@ -8,7 +8,7 @@ RootModule = 'DSInternals.psm1' # Version number of this module. -ModuleVersion = '2.12' +ModuleVersion = '2.13' # ID used to uniquely identify this module GUID = '766b3ad8-eb78-48e6-84bd-61b31d96b53e' @@ -114,8 +114,8 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @" -- Cmdlets for ntds.dit manipulation now work on Windows 7 / Windows Server 2008 R2. -- The module now requires .NET Framework 4.5.1 instead of 4.5. +- Fixed a rare bug which caused the database cmdlets to hang while loading indices. +- Meaningful error messages are now displayed when a dirty or downlevel ntds.dit file is encountered. "@ } # End of PSData hashtable diff --git a/Src/DSInternals.Replication.Interop/app.rc b/Src/DSInternals.Replication.Interop/app.rc index b8c525e..4fe6f50 100644 Binary files a/Src/DSInternals.Replication.Interop/app.rc and b/Src/DSInternals.Replication.Interop/app.rc differ