Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.

Commit 558f0c7

Browse files
Merge pull request #4 from techthoughts2/Module
Fixes #3 - manifest tags spacing issue resolved. Also went to version…
2 parents 3dd3a09 + dc880f9 commit 558f0c7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diag-V.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'Diag-V.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0'
15+
ModuleVersion = '2.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = 'd0a9150d-b6a4-4b17-a325-e3a24fed0aa9'
@@ -56,8 +56,8 @@
5656

5757
# Tags applied to this module. These help with module discovery in online galleries.
5858
Tags = 'Hyper-V', 'Diag-V', 'Diagnostic', 'Tests', 'VM', 'VMs', 'VHDs', 'VHDXs', 'VHDX',
59-
'VHD', 'CSV', 'Overallocation', 'Overprovisioning', 'Virtual Machines',
60-
'Virtual Machine'
59+
'VHD', 'CSV', 'Overallocation', 'Overprovisioning', 'VirtualMachines',
60+
'VirtualMachine'
6161

6262
# A URL to the license for this module.
6363
# LicenseUri = ''
@@ -69,7 +69,7 @@
6969
# IconUri = ''
7070

7171
# ReleaseNotes of this module
72-
# ReleaseNotes = ''
72+
ReleaseNotes = 'Complete re-write from original script version. Converted Diag-V from a ps1 PowerShell script to a fully supported PowerShell module. Redesigned all diagnostic functions: Improved error control, General bug fixes, Better readability, Added new Hyper-V log parser function'
7373

7474
} # End of PSData hashtable
7575

Diag-V.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#region variables
22

3-
$Script:version = "1.0"
3+
$Script:version = "2.0"
44

55
#endregion
66

0 commit comments

Comments
 (0)