diff --git a/Changelog.txt b/Changelog.txt index 14870cb..7093d80 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,8 @@ +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. +- Both Visual Studio 2013 and 2015 are now supported platforms. + Version 2.11 - Added support for Windows Server 2003 R2. - The replication now works on x86, again. diff --git a/Src/Configuration/CommonAssemblyInfo.cs b/Src/Configuration/CommonAssemblyInfo.cs index afafa9e..1992033 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.11.1")] -[assembly: AssemblyFileVersion("2.11.1")] \ No newline at end of file +[assembly: AssemblyVersion("2.12")] +[assembly: AssemblyFileVersion("2.12")] \ No newline at end of file diff --git a/Src/Configuration/CommonAssemblyInfo.h b/Src/Configuration/CommonAssemblyInfo.h index 53975e2..1a4535c 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.11.1")]; \ No newline at end of file +[assembly:AssemblyVersionAttribute("2.12")]; \ No newline at end of file diff --git a/Src/DSInternals.PowerShell/DSInternals.psd1 b/Src/DSInternals.PowerShell/DSInternals.psd1 index b4e1cfc..4c6ffee 100644 Binary files a/Src/DSInternals.PowerShell/DSInternals.psd1 and b/Src/DSInternals.PowerShell/DSInternals.psd1 differ diff --git a/Src/DSInternals.Replication.Interop/app.rc b/Src/DSInternals.Replication.Interop/app.rc index f45ae1d..b8c525e 100644 Binary files a/Src/DSInternals.Replication.Interop/app.rc and b/Src/DSInternals.Replication.Interop/app.rc differ