diff --git a/Modules/DSCPullServerWeb/DSCPullServerWeb.psd1 b/Modules/DSCPullServerWeb/DSCPullServerWeb.psd1 index 3424dc0..e93981b 100644 --- a/Modules/DSCPullServerWeb/DSCPullServerWeb.psd1 +++ b/Modules/DSCPullServerWeb/DSCPullServerWeb.psd1 @@ -1,6 +1,6 @@ @{ RootModule = 'DSCPullServerWeb.psm1' - ModuleVersion = '1.0.2' + ModuleVersion = '1.1.0' GUID = 'B9449D06-0A81-4743-B9A1-33A2D2082DE4' Author = 'Claudio Spizzi' Copyright = 'Copyright (c) 2016 by Claudio Spizzi. Licensed under MIT license.' diff --git a/Modules/DSCPullServerWeb/Examples/DscPullServerWeb_Configuration.ps1 b/Modules/DSCPullServerWeb/Examples/DscPullServerWeb_Configuration.ps1 index d750f49..96f9590 100644 --- a/Modules/DSCPullServerWeb/Examples/DscPullServerWeb_Configuration.ps1 +++ b/Modules/DSCPullServerWeb/Examples/DscPullServerWeb_Configuration.ps1 @@ -14,7 +14,7 @@ Configuration DSCPullServerWithWeb Import-DscResource -ModuleName PSDesiredStateConfiguration -ModuleVersion 1.1 Import-DscResource -ModuleName xPSDesiredStateConfiguration -ModuleVersion 5.1.0.0 - Import-DscResource -ModuleName DSCPullServerWeb -ModuleVersion 1.0.2 + Import-DscResource -ModuleName DSCPullServerWeb -ModuleVersion 1.1.0 Node 'localhost' { diff --git a/README.md b/README.md index 13d27c5..3bfcafa 100644 --- a/README.md +++ b/README.md @@ -104,12 +104,13 @@ Refer to the following example to install the website on your DSC pull server: ## Versions -### Unreleased +### 1.1.0 * Add Windows Firewall rule for the DSC Pull Server Web port * Change target .NET Framework from v4.5.2 to v4.5. to match the pre-installed - .NET Framework on Windows Server 2012 and higher. + version on Windows Server 2012 and later * Implement IIS Windows Authentication configuration +* Add a confirm dialog before deleting configurations and modules ### 1.0.2 diff --git a/Sources/DSCPullServerWeb/Properties/AssemblyInfo.cs b/Sources/DSCPullServerWeb/Properties/AssemblyInfo.cs index 2a57f91..30f1249 100644 --- a/Sources/DSCPullServerWeb/Properties/AssemblyInfo.cs +++ b/Sources/DSCPullServerWeb/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.2.0")] -[assembly: AssemblyFileVersion("1.0.2.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")]