K.PSGallery.ManifestVersioning.psd1

@{
    RootModule = 'K.PSGallery.ManifestVersioning.psm1'
    ModuleVersion = '1.0.2'
    CompatiblePSEditions = @('Desktop', 'Core')
    GUID = '13df5873-962f-4431-95d2-01dec5569f1b'
    Author = '1d70f'
    CompanyName = '1d70f'
    Copyright = '(c) 2025 1d70f. All rights reserved.'
    Description = 'PowerShell module for updating module manifest (.psd1) versions with Git integration. Automates version management in CI/CD pipelines.'
    PowerShellVersion = '5.1'
    RequiredModules = @()
    RequiredAssemblies = @()
    ScriptsToProcess = @()
    TypesToProcess = @()
    FormatsToProcess = @()
    NestedModules = @()
    FunctionsToExport = @('Update-ModuleManifestVersion')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PowerShell', 'Module', 'Manifest', 'Version', 'Automation', 'DevOps', 'PSGallery', 'CI/CD')
            LicenseUri = 'https://github.com/GrexyLoco/K.PSGallery.ManifestVersioning/blob/master/LICENSE'
            ProjectUri = 'https://github.com/GrexyLoco/K.PSGallery.ManifestVersioning'
            ReleaseNotes = @'
## Version 0.0.10
- Initial release of K.PSGallery.ManifestVersioning module
'@

        }
    }
    HelpInfoURI = 'https://github.com/GrexyLoco/K.PSGallery.ManifestVersioning/blob/master/README.md'
}