mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
bump version, update changelog
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
RootModule = 'ImportExcel.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '7.8.1'
|
||||
ModuleVersion = '7.8.2'
|
||||
|
||||
# ID used to uniquely identify this module
|
||||
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
||||
|
||||
13
changelog.md
13
changelog.md
@@ -1,3 +1,16 @@
|
||||
# 7.8.2
|
||||
|
||||
- Added `HeaderName` parameter to `Export-Excel`. Allows you to output an object with a property name. Otherwise the data is just the array of values.
|
||||
|
||||
```powershell
|
||||
1..10 | Export-Excel -Path .\test.xlsx -HeaderName MyNum
|
||||
```
|
||||
|
||||
- Added example `CopyFromOneSheetInSameWorkbook`. Shows how to copy a range of data from WorksheetA to WorksheetB
|
||||
- Added example `HeaderName`. Shows how to use the new `-HeaderName` parameter
|
||||
- Added example `HeaderName`. Shows how to use the new `-HeaderName` parameter
|
||||
- Added example `ConvertDictionaryOfArraysToExcel` example. Takes a dictionary of arrays and converts it Rows and Columns of data in Excel.
|
||||
|
||||
# 7.8.1
|
||||
|
||||
- Fixed conditional formatting so it recognizes 'Top and Bottom' as a rule type. Thanks [g-pearl](https://github.com/g-pearl)
|
||||
|
||||
Reference in New Issue
Block a user