diff --git a/CHANGELOG.md b/CHANGELOG.md index 511c3e8..79e8374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [0.7.0] 2025-03-31 ### Changed @@ -14,7 +14,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [**#67**](https://github.com/psake/PowerShellBuild/pull/67) You can now overwrite existing markdown files using `$PSBPreference.Docs.Overwrite` and setting it to `$true`. -- Loose dependencies by allowing them to be overwritten with $PSBPreference. - [**#72**](https://github.com/psake/PowerShellBuild/pull/72) Loosen dependencies by allowing them to be overwritten with `$PSBPreference.TaskDependencies`. diff --git a/PowerShellBuild/PowerShellBuild.psd1 b/PowerShellBuild/PowerShellBuild.psd1 index 45b5bc5..2f59838 100644 --- a/PowerShellBuild/PowerShellBuild.psd1 +++ b/PowerShellBuild/PowerShellBuild.psd1 @@ -1,13 +1,13 @@ @{ - RootModule = 'PowerShellBuild.psm1' - ModuleVersion = '0.6.2' - GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d' - Author = 'Brandon Olin' - CompanyName = 'Community' - Copyright = '(c) Brandon Olin. All rights reserved.' - Description = 'A common psake and Invoke-Build task module for PowerShell projects' + RootModule = 'PowerShellBuild.psm1' + ModuleVersion = '0.7.0' + GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d' + Author = 'Brandon Olin' + CompanyName = 'Community' + Copyright = '(c) Brandon Olin. All rights reserved.' + Description = 'A common psake and Invoke-Build task module for PowerShell projects' PowerShellVersion = '3.0' - RequiredModules = @( + RequiredModules = @( @{ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.16' } @{ModuleName = 'Pester'; ModuleVersion = '5.6.1' } @{ModuleName = 'platyPS'; ModuleVersion = '0.14.1' } @@ -24,15 +24,15 @@ 'Test-PSBuildPester' 'Test-PSBuildScriptAnalysis' ) - CmdletsToExport = @() + CmdletsToExport = @() VariablesToExport = @() - AliasesToExport = @('*tasks') - PrivateData = @{ + AliasesToExport = @('*tasks') + PrivateData = @{ PSData = @{ - Tags = @('psake', 'build', 'InvokeBuild') - LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE' - ProjectUri = 'https://github.com/psake/PowerShellBuild' - IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png' + Tags = @('psake', 'build', 'InvokeBuild') + LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE' + ProjectUri = 'https://github.com/psake/PowerShellBuild' + IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png' ReleaseNotes = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/CHANGELOG.md' } }