Pushed to PowerShell Gallery

This commit is contained in:
dfinke
2015-10-20 10:14:18 -04:00
parent 379eb64924
commit 0c8709568a
3 changed files with 21 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
RootModule = 'ImportExcel.psm1'
# Version number of this module.
ModuleVersion = '1.83'
ModuleVersion = '1.90'
# ID used to uniquely identify this module
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'

View File

@@ -4,7 +4,7 @@ $p = @{
NuGetApiKey = $NuGetApiKey
LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt"
Tag = "Excel","EPPlus","Export","Import"
ReleaseNote = "For Import-Excel: added -NoHeader parameter and returns .Value"
ReleaseNote = "Fixed v3.0 bug, added -HeaderRow, added Help for Export-Excel"
ProjectUri = "https://github.com/dfinke/ImportExcel"
}

View File

@@ -25,9 +25,27 @@ Know Issues
What's new
-
#### 10/19/2015
#### 10/20/2015
Big bug for version 3.0 PowerShell folks!
This technique fails in 3.0 and works in 4.0 and later.
```powershell
$m="substring"
"hello".$m(2,1)
```
Adding `.invoke` works in 3.0 and later.
```powershell
$m="substring"
"hello".$m.invoke(2,1)
```
A ***big thank you*** to [DarkLite1](https://github.com/DarkLite1) for adding the help to Export-Excel.
Added `-HeaderRow` parameter. Sometimes the heading does not start in Row 1.
#### 10/16/2015