Skip to content

Commit

Permalink
Fixes to module manifest ready for publication
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrdavidson committed Dec 29, 2020
1 parent 61261d1 commit 1afd677
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
18 changes: 9 additions & 9 deletions PSQualityCheck.Functions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PSQualityCheck.Functions.psm1'

# Version number of this module.
ModuleVersion = '1.0.6'
ModuleVersion = '1.0.7'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -22,7 +22,7 @@
Copyright = '(c) Andrew Davidson. All rights reserved.'

# Description of the functionality provided by this module
# Description = ''
Description = 'This module contains supporting functions for PSQualityCheck.'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.0'
Expand Down Expand Up @@ -83,13 +83,13 @@
)

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand All @@ -106,13 +106,13 @@
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
Tags = @('powershell', 'powershell-module', 'tests', 'quality', 'quality-check', 'pester', 'pester-tests')

# A URL to the license for this module.
# LicenseUri = ''
LicenseUri = 'https://github.com/andrewrdavidson/PSQualityCheck/blob/main/LICENSE'

# A URL to the main website for this project.
# ProjectUri = ''
ProjectUri = 'https://github.com/andrewrdavidson/PSQualityCheck'

# A URL to an icon representing this module.
# IconUri = ''
Expand All @@ -134,7 +134,7 @@
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
HelpInfoURI = 'https://github.com/andrewrdavidson/PSQualityCheck/wiki'

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
Expand Down
19 changes: 9 additions & 10 deletions PSQualityCheck.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PSQualityCheck.psm1'

# Version number of this module.
ModuleVersion = '1.0.6'
ModuleVersion = '1.0.7'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -22,7 +22,7 @@
Copyright = '(c) Andrew Davidson. All rights reserved.'

# Description of the functionality provided by this module
# Description = ''
Description = 'This module interfaces to a set of Pester tests that enable the enforcement of quality controls rules on PowerShell scripts and modules.'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.0'
Expand Down Expand Up @@ -66,13 +66,13 @@
FunctionsToExport = 'Invoke-PSQualityCheck'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand All @@ -89,13 +89,13 @@
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
Tags = @('powershell', 'powershell-module', 'tests', 'quality', 'quality-check', 'pester', 'pester-tests')

# A URL to the license for this module.
# LicenseUri = ''
LicenseUri = 'https://github.com/andrewrdavidson/PSQualityCheck/blob/main/LICENSE'

# A URL to the main website for this project.
# ProjectUri = ''
ProjectUri = 'https://github.com/andrewrdavidson/PSQualityCheck'

# A URL to an icon representing this module.
# IconUri = ''
Expand All @@ -117,10 +117,9 @@
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
HelpInfoURI = 'https://github.com/andrewrdavidson/PSQualityCheck/wiki'

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}

0 comments on commit 1afd677

Please sign in to comment.