From 14e1dfd8db8279268e8d8e0404f9ed03d3f9cab5 Mon Sep 17 00:00:00 2001 From: dfinke Date: Sun, 20 Jun 2021 12:11:14 -0400 Subject: [PATCH] Bump version. Use ProviderPath --- ImportExcel.psd1 | 2 +- PublishToGallery.ps1 | 6 ++++++ README.md | 4 ++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 PublishToGallery.ps1 diff --git a/ImportExcel.psd1 b/ImportExcel.psd1 index 83a98b4..6651fd4 100644 --- a/ImportExcel.psd1 +++ b/ImportExcel.psd1 @@ -6,7 +6,7 @@ RootModule = 'ImportExcel.psm1' # Version number of this module. - ModuleVersion = '7.1.2' + ModuleVersion = '7.1.3' # ID used to uniquely identify this module GUID = '60dd4136-feff-401a-ba27-a84458c57ede' diff --git a/PublishToGallery.ps1 b/PublishToGallery.ps1 new file mode 100644 index 0000000..0b55bd1 --- /dev/null +++ b/PublishToGallery.ps1 @@ -0,0 +1,6 @@ +$p = @{ + Name = "ImportExcel" + NuGetApiKey = $NuGetApiKey +} + +Publish-Module @p \ No newline at end of file diff --git a/README.md b/README.md index cfdb8c2..b62bad3 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ Plus, wiring the [PowerShell ScriptAnalyzer Excel report](https://github.com/dfi ![](.gitbook/assets/ScriptAnalyzerReport.png) +## What's new 7.1.3 + +- Changed to `ProviderPath`. Thanks [Trevor Walker](https://github.com/sporkabob) + ## What's new 7.1.2 - `Get-ExcelFileSummary` - Gets summary information on an Excel file like number of rows, columns, and more