PSSort.psd1

#
# Module manifest for module 'PSSort'
#
# Generated by: Hannes Palmquist
#
# Generated on: 2022-11-13
#

@{
    RootModule           = 'PSSort.psm1'
    ModuleVersion        = '1.13.0'
    CompatiblePSEditions = @('Desktop', 'Core')
    PowerShellVersion    = '5.1'
    GUID                 = '1a7ca65e-3fe2-4f51-a8d5-5d8990fd2d76'
    Author               = 'Hannes Palmquist'
    CompanyName          = 'GetPS'
    Copyright            = '(c) Hannes Palmquist. All rights reserved.'
    Description          = 'asd'
    RequiredModules      = @()
    FunctionsToExport    = @('Test-SortingAlgorithms','Use-BubbleSort','Use-QuickSort','Use-SelectionSort')
    CmdletsToExport      = '*'
    VariablesToExport    = '*'
    AliasesToExport      = '*'
    PrivateData          = @{
        PSData = @{
            # Due to a bug in PowershellGet 3.0.17-beta17 licenseuri cannot used when Publishing.
            # Rollback to 3.0.17-beta16 has a bug that does not allow publishing of versioned powershell modules.
            # These three must be commented until 3.0.17-beta18 is released.
            #LicenseUri = 'https://github.com/hanpq/PSSort/blob/main/LICENSE'
            #RequireLicenseAcceptance = $false
            Prerelease   = ''
            Tags         = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS')
            ProjectUri   = 'https://getps.dev/modules/PSSort/getstarted'
            ReleaseNotes = '## [1.13.0] - 2022-12-15
 
### Added
 
- Added Use-SelectionSort
 
'

        }
    }
}