diff --git a/ImportExcel.psd1 b/ImportExcel.psd1 index cb27ce02..79a863f5 100644 --- a/ImportExcel.psd1 +++ b/ImportExcel.psd1 @@ -6,7 +6,7 @@ RootModule = 'ImportExcel.psm1' # Version number of this module. - ModuleVersion = '7.8.5' + ModuleVersion = '7.8.6' # ID used to uniquely identify this module GUID = '60dd4136-feff-401a-ba27-a84458c57ede' diff --git a/Public/ConvertFrom-ExcelData.ps1 b/Public/ConvertFrom-ExcelData.ps1 index a85f1476..3014434e 100644 --- a/Public/ConvertFrom-ExcelData.ps1 +++ b/Public/ConvertFrom-ExcelData.ps1 @@ -8,7 +8,8 @@ function ConvertFrom-ExcelData { [ScriptBlock]$ScriptBlock, [Alias("Sheet")] $WorksheetName = 1, - [int]$HeaderRow = 1, + [Alias('HeaderRow', 'TopRow')] + [int]$StartRow = 1, [string[]]$Header, [switch]$NoHeader, [switch]$DataOnly diff --git a/changelog.md b/changelog.md index db0afb14..e4f9207a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +# 7.8.6 + +- Thank you [John Boyne](https://github.com/kyllath) + - Add missing parameter aliases to align with caller/callee + # 7.8.5 - Added `Get-ExcelFileSchema` to get the schema of an Excel file.