Skip to content

Commit b260466

Browse files
v0.14.1
1 parent 0f528a7 commit b260466

4 files changed

Lines changed: 18 additions & 5 deletions

File tree

PSProjectStatus.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
@{
44
RootModule = 'PSProjectStatus.psm1'
5-
ModuleVersion = '0.14.0'
5+
ModuleVersion = '0.14.1'
66
CompatiblePSEditions = 'Desktop', 'Core'
77
GUID = 'ec249544-dc4e-4e24-aae8-4281ec84f54d'
88
Author = 'Jeff Hicks'
@@ -19,7 +19,7 @@
1919
'New-PSProjectTask', 'Remove-PSProjectTask',
2020
'Update-PSProjectStatus'
2121
)
22-
AliasesToExport = @('gpstat', 'npstat', 'spstat', 'gitstat')
22+
AliasesToExport = @('gpstat', 'npstat', 'spstat', 'gitstat','nptask')
2323
PrivateData = @{
2424
PSData = @{
2525
Tags = @('modules', 'scripting', 'project-management', 'project', 'psmodule', 'to-do')

changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog for PSProjectStatus
22

3+
## v0.14.1
4+
5+
### Changed
6+
7+
- Updated `README`
8+
9+
### Added
10+
11+
- Added alias `nptask` for `New-PSProjectTask
12+
313
## v0.14.0
414

515
### Fixed
@@ -198,3 +208,7 @@
198208
- Updated `psproject.format.ps1xml` to adjust table widths. Added a default list view.
199209

200210
## v0.1.0
211+
## [Unreleased]
212+
### Changed
213+
- Updated documentation
214+

functions/public/Get-PSProjectTask.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ Function Get-PSProjectTask {
6464
else {
6565
Write-Warning ($strings.missingJson -f $cPath)
6666
}
67-
6867
} #process
6968

7069
End {

functions/public/New-PSProjectTask.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Function New-PSProjectTask {
22
[cmdletbinding(SupportsShouldProcess)]
3+
[alias("nptask")]
34
[OutputType('None','psProjectTask')]
45
Param(
56
[Parameter(
@@ -10,8 +11,7 @@ Function New-PSProjectTask {
1011
HelpMessage = "Enter the task description.")]
1112
[ValidateNotNullOrEmpty()]
1213
[string[]]$TaskDescription,
13-
[Parameter(
14-
HelpMessage = "Enter the parent path to the psproject.json file, e.g. c:\scripts\mymodule.")]
14+
[Parameter(HelpMessage = "Enter the parent path to the psproject.json file, e.g. c:\scripts\mymodule.")]
1515
[ValidateScript({ Test-Path $_ })]
1616
[alias("FullName")]
1717
[String]$Path = ".",

0 commit comments

Comments
 (0)