WhatsNew.psd1

@{
    ModuleVersion = '3.0.34'
    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!'
    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'
        } 
     } 
}