WhatsNew.psd1

@{
    ModuleVersion = '3.0.31'
    GUID = '861e5d28-8348-47d3-a2f6-cdd23e33bb55'
    Author = 'Nick Spreitzer'
    CompanyName = 'RAWR! Productions'
    Copyright = '(c) Nick Spreitzer. All rights reserved.'
    Description = 'Powershell functions for versioning a git repo with tags and more!'
    NestedModules = @('.\script-modules\GitVersioning.psm1', 
                   '.\script-modules\OpenSolution.psm1', 
                   '.\script-modules\RemoveLocalBranches.psm1', 
                   '.\script-modules\RemoveModuleManifestComments.psm1', 
                   '.\WhatsNew.dll')
    FunctionsToExport = 'Add-MajorVersionTag', 'Add-MinorVersionTag', 'Add-PatchVersionTag', 
                   'New-VersionTag', 'WriteSuccessMessage', 'GetLatestVersionElements', 
                   'Open-Solution', 'Remove-LocalBranches', 
                   'Remove-ModuleManifestComments'
    CmdletsToExport = 'Export-BinaryCmdletAliases', 'Export-BinaryCmdletNames', 
                   'Export-PSScriptAliases', 'Export-PSScriptFunctionNames'
    VariablesToExport = '*'
    AliasesToExport = 'sln'
    PrivateData = @{
        PSData = @{
                Tags = @('git','semver')
                LicenseUri = 'https://github.com/refactorsaurusrex/whats-new/blob/master/LICENSE.md'
                ProjectUri = 'https://github.com/refactorsaurusrex/whats-new'
        } 
    } 
}