Skip to content

Commit da7aca2

Browse files
chore: 🔧 bump version to 1.0.1
* Updated `VersionPrefix` and `ModuleVersion` to `1.0.1` in project files. * Adjusted `RefreshPSD1Only` setting to `false` in `Build-Module.ps1`. * Ensured consistency across module versioning.
1 parent 47c2824 commit da7aca2

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

IISParser.PowerShell/IISParser.PowerShell.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
service discovery, zone transfers, and DNS updates.</Description>
1313
<AssemblyName>IISParser.PowerShell</AssemblyName>
1414
<AssemblyTitle>IISParser PowerShell Module</AssemblyTitle>
15-
<VersionPrefix>1.0.0</VersionPrefix>
15+
<VersionPrefix>1.0.1</VersionPrefix>
1616
<AssemblyVersion>1.0.0</AssemblyVersion>
1717
<FileVersion>1.0.0</FileVersion>
1818
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>

IISParser/IISParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</Description>
77
<AssemblyName>IISParser</AssemblyName>
88
<AssemblyTitle>IISParser</AssemblyTitle>
9-
<VersionPrefix>1.0.0</VersionPrefix>
9+
<VersionPrefix>1.0.1</VersionPrefix>
1010
<AssemblyVersion>1.0.0</AssemblyVersion>
1111
<FileVersion>1.0.0</FileVersion>
1212
<TargetFrameworks Condition=" '$([MSBuild]::IsOsPlatform(`Windows`))' ">

Module/Build/Build-Module.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Build-Module -ModuleName 'IISParser' {
88
# ID used to uniquely identify this module
99
GUID = '798a1c8a-b4fd-4849-81d2-6138e39eb88b'
1010
# Version number of this module.
11-
ModuleVersion = '1.0.0'
11+
ModuleVersion = '1.0.1'
1212
# Author of this module
1313
Author = 'Przemyslaw Klys'
1414
# Company or vendor of this module
@@ -84,7 +84,7 @@ Build-Module -ModuleName 'IISParser' {
8484
NETFramework = 'net472', 'net8.0'
8585
DotSourceLibraries = $true
8686
NETSearchClass = 'IISParser.PowerShell.CmdletGetIISParsedLog'
87-
RefreshPSD1Only = $true
87+
RefreshPSD1Only = $false
8888
}
8989

9090
New-ConfigurationBuild @newConfigurationBuildSplat
@@ -93,6 +93,6 @@ Build-Module -ModuleName 'IISParser' {
9393
New-ConfigurationArtefact -Type Packed -Enable -Path "$PSScriptRoot\..\Artefacts\Packed" -IncludeTagName -ArtefactName "IISParser-PowerShellModule.<TagModuleVersionWithPreRelease>.zip" -ID 'ToGitHub'
9494

9595
# global options for publishing to github/psgallery
96-
#New-ConfigurationPublish -Type PowerShellGallery -FilePath 'C:\Support\Important\PowerShellGalleryAPI.txt' -Enabled:$true
97-
#New-ConfigurationPublish -Type GitHub -FilePath 'C:\Support\Important\GitHubAPI.txt' -UserName 'EvotecIT' -Enabled:$true -ID 'ToGitHub' -OverwriteTagName 'IISParser-PowerShellModule.<TagModuleVersionWithPreRelease>'
96+
New-ConfigurationPublish -Type PowerShellGallery -FilePath 'C:\Support\Important\PowerShellGalleryAPI.txt' -Enabled:$true
97+
New-ConfigurationPublish -Type GitHub -FilePath 'C:\Support\Important\GitHubAPI.txt' -UserName 'EvotecIT' -Enabled:$true -ID 'ToGitHub' -OverwriteTagName 'IISParser-PowerShellModule.<TagModuleVersionWithPreRelease>'
9898
}

Module/IISParser.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
DotNetFrameworkVersion = '4.7.2'
1010
FunctionsToExport = @()
1111
GUID = '798a1c8a-b4fd-4849-81d2-6138e39eb88b'
12-
ModuleVersion = '1.0.0'
12+
ModuleVersion = '1.0.1'
1313
PowerShellVersion = '5.1'
1414
PrivateData = @{
1515
PSData = @{

0 commit comments

Comments
 (0)