From 1fe7c530d4a07205c2c28ea7ba1e18c1c2e3329e Mon Sep 17 00:00:00 2001 From: Igor Iric Date: Wed, 17 Oct 2018 22:26:40 +0200 Subject: [PATCH] release 1.1 --- Get-FolderAge.ps1 | 4 ++-- ReleaseNotes.md | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 ReleaseNotes.md diff --git a/Get-FolderAge.ps1 b/Get-FolderAge.ps1 index 6f9dc20..e6cbbf7 100644 --- a/Get-FolderAge.ps1 +++ b/Get-FolderAge.ps1 @@ -1,6 +1,6 @@ <#PSScriptInfo -.VERSION 1.0 +.VERSION 1.1 .GUID c9788cc2-d4af-4219-bf7d-8dd8fa89584f .AUTHOR Igor Iric, iricigor@gmail.com, https://github.com/iricigor .COMPANYNAME @@ -12,7 +12,7 @@ .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES -.RELEASENOTES Initial release +.RELEASENOTES Added -Exclude and -Threads parameters, for more info see https://github.com/iricigor/GetFolderAge/blob/master/ReleaseNotes.md .DESCRIPTION Get-FolderAge returns `LastModifiedDate` for a specified folder(s) and if folders were modified after a specified cut-off date. #> diff --git a/ReleaseNotes.md b/ReleaseNotes.md new file mode 100644 index 0000000..526ed2e --- /dev/null +++ b/ReleaseNotes.md @@ -0,0 +1,18 @@ +# Release notes for PowerShell script Get-FolderAge by github.com/iricigor + +## 1.1 + +Date: Wednesday, October 17, 2018 + +### New functionality in 1.1 + +- Parameter `-Exclude` which specifies list of folders to be excluded from scanning +- Parameter `-Threads` which forces parallel execution of checks on multiple folders, requires https://github.com/PaulHigin/PSThreadJob + +## 1.0 + +Date: Monday, October 15, 2018 + +### New functionality in 0.1 + +- First, initial release \ No newline at end of file