PiHoleShell.psd1

@{
    RootModule           = 'PiHoleShell.psm1'
    ModuleVersion        = '0.0.29'
    GUID                 = 'b3cecc78-fe8f-49c6-9015-3d66ef5d49cb'
    Author               = 'Mike Madeja'
    Description          = 'A module to interact with the v6 version of PiHole API'
    CompatiblePSEditions = @('Core')
    PowerShellVersion    = '7.0'
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()

    PrivateData          = @{
        PSData = @{
            Tags         = @('PiHole', 'PowerShell7')
            LicenseUri   = 'https://github.com/mikemadeja/PiHoleShell/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/mikemadeja/PiHoleShell'
            ReleaseNotes = '## What''s Changed
* fix: Get-PiHoleInfoHost now returns Model and DMI fields by @mikemadeja in https://github.com/mikemadeja/PiHoleShell/pull/97
* fix: three Get-* functions with completeness/correctness gaps by @mikemadeja in https://github.com/mikemadeja/PiHoleShell/pull/98
* ci: check README command reference on every PR into develop by @mikemadeja in https://github.com/mikemadeja/PiHoleShell/pull/99
* fix: Get-* completeness gaps and README check on every develop PR by @mikemadeja in https://github.com/mikemadeja/PiHoleShell/pull/100


**Full Changelog**: https://github.com/mikemadeja/PiHoleShell/compare/v0.0.28...v0.0.29'

        }
    }
}