Skip to content

Release: 0.7.0 #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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`.
Expand Down
30 changes: 15 additions & 15 deletions PowerShellBuild/PowerShellBuild.psd1
Original file line number Diff line number Diff line change
@@ -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' }
Expand All @@ -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'
}
}
Expand Down