Skip to content

Commit c8a7d54

Browse files
Release: 0.7.0 (#74)
* Updated `ModuleVersion` to `0.7.0` in `PowerShellBuild.psd1`. * Changed changelog header to reflect the new version. * Removed duplicate entry in changelog for clarity.
1 parent 5f85aba commit c8a7d54

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

CHANGELOG.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Unreleased
8+
## [0.7.0] 2025-03-31
99

1010
### Changed
1111

@@ -14,7 +14,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
- [**#67**](https://github.com/psake/PowerShellBuild/pull/67) You can now
1515
overwrite existing markdown files using `$PSBPreference.Docs.Overwrite` and
1616
setting it to `$true`.
17-
- Loose dependencies by allowing them to be overwritten with $PSBPreference.
1817
- [**#72**](https://github.com/psake/PowerShellBuild/pull/72) Loosen
1918
dependencies by allowing them to be overwritten with
2019
`$PSBPreference.TaskDependencies`.

PowerShellBuild/PowerShellBuild.psd1

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@{
2-
RootModule = 'PowerShellBuild.psm1'
3-
ModuleVersion = '0.6.2'
4-
GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d'
5-
Author = 'Brandon Olin'
6-
CompanyName = 'Community'
7-
Copyright = '(c) Brandon Olin. All rights reserved.'
8-
Description = 'A common psake and Invoke-Build task module for PowerShell projects'
2+
RootModule = 'PowerShellBuild.psm1'
3+
ModuleVersion = '0.7.0'
4+
GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d'
5+
Author = 'Brandon Olin'
6+
CompanyName = 'Community'
7+
Copyright = '(c) Brandon Olin. All rights reserved.'
8+
Description = 'A common psake and Invoke-Build task module for PowerShell projects'
99
PowerShellVersion = '3.0'
10-
RequiredModules = @(
10+
RequiredModules = @(
1111
@{ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.16' }
1212
@{ModuleName = 'Pester'; ModuleVersion = '5.6.1' }
1313
@{ModuleName = 'platyPS'; ModuleVersion = '0.14.1' }
@@ -24,15 +24,15 @@
2424
'Test-PSBuildPester'
2525
'Test-PSBuildScriptAnalysis'
2626
)
27-
CmdletsToExport = @()
27+
CmdletsToExport = @()
2828
VariablesToExport = @()
29-
AliasesToExport = @('*tasks')
30-
PrivateData = @{
29+
AliasesToExport = @('*tasks')
30+
PrivateData = @{
3131
PSData = @{
32-
Tags = @('psake', 'build', 'InvokeBuild')
33-
LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE'
34-
ProjectUri = 'https://github.com/psake/PowerShellBuild'
35-
IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png'
32+
Tags = @('psake', 'build', 'InvokeBuild')
33+
LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE'
34+
ProjectUri = 'https://github.com/psake/PowerShellBuild'
35+
IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png'
3636
ReleaseNotes = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/CHANGELOG.md'
3737
}
3838
}

0 commit comments

Comments
 (0)