Piecemeal.psd1

@{
    ModuleVersion = '0.1.4'
    RootModule    = 'Piecemeal.psm1'
    Description   = 'Easy Extensible Plugins for PowerShell'
    GUID          = '91e2c328-d7dc-44a3-aeeb-ef3b19c36767'
    Author        = 'James Brundage'
    Copyright     = '2021 Start-Automating'
    CompanyName   = 'Start-Automating'
    PrivateData   = @{
            PSData    = @{
                Tags       = 'PowerShell', 'Plugin', 'Extension', 'Extensibility'
                ProjectURI = 'https://github.com/StartAutomating/Piecemeal'
                LicenseURI = 'https://github.com/StartAutomating/Piecemeal/blob/main/LICENSE'
                ReleaseNotes = @'
## 0.1.4
---
* Get-Extension:
  * Can now filter extension parameters based off of command (#17)

## 0.1.3
---
* Get-Extension:
  * Added -RequireExtensionAttribute (#13)
  * Added -RequireCmdletAttribute (#14)
  * Respecting [CmdletBinding(DefaultParameterSetName)] (#12)
  * Surfacing attributes (#11)
* Install-Piecemeal:
  * Allowing customization of -ExtensionName (#10)
  * Making $script variables unique (#9)
  * Fixing issues on Core (#16)

## 0.1.2
---
* Get-Extension:
  * Added -NoMandatoryDynamicParameter (#6 / #4)
  * [Parameter] attributes are now copied, so underlying commands are unchanged (#7)

## 0.1.1
---
* Get-Extension:
  * -Parameter not accepts ValueFromPipelineByPropertyName (#2)
  * -CommandName now works (#3)
  * .GetDynamicParameters now supports -NoMandatory (#4)

## 0.1
---
* Initial Release of Piecemeal

'@

            }
    }
}