From 241f7ae080d4a6969627225aa654808ea4796bf5 Mon Sep 17 00:00:00 2001 From: Quintus Marais Date: Wed, 15 May 2024 11:30:11 +0200 Subject: [PATCH 1/2] Update release notes and version number and generate new NuGet Package --- RELEASE_NOTES.md | 10 ++++++++++ nuget/paket.template | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d34e982..392aeff 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,13 @@ +### 2.1.0 + +* Fix issue [#77](https://github.com/fsprojects/ExcelProvider/issues/77). The type provider will no longer revert to the first sheet if the sheet name provided does not exist. Instead, the code will not compile. +* The documentation site has been updated and a number of small issues fixed. +* Dependencies have been updated to the latest versions. +* Started using Fantomas. All files now formatted with Fantomas. +* Some build targets in build.fsx have been updated/restored i.e. Format, CheckFormat, Nuget, CleanDocs, GenerateDocs + + + #### 2.1.0-rc2 * Remove included System.Runtime.CompilerServices and related packages that somehow got included in the nuget package diff --git a/nuget/paket.template b/nuget/paket.template index 0fece75..d515e2b 100644 --- a/nuget/paket.template +++ b/nuget/paket.template @@ -1,7 +1,7 @@ type file id ExcelProvider version - 2.1.0-rc2 + 2.1.0 authors Contributors on Github owners From 227bb4ac2c24ea8c3a4cdefdca3668315549b775 Mon Sep 17 00:00:00 2001 From: Quintus Marais Date: Wed, 15 May 2024 12:00:22 +0200 Subject: [PATCH 2/2] Update documentation a bit --- DEVGUIDE.md | 2 +- README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DEVGUIDE.md b/DEVGUIDE.md index 1becad8..21dd3e4 100644 --- a/DEVGUIDE.md +++ b/DEVGUIDE.md @@ -4,7 +4,7 @@ You can push the packages if you have permissions, either automatically using `` .\Build BuildPackage set APIKEY=... - ..\fsharp\.nuget\nuget.exe push bin\ExcelProvider.1.0.1.nupkg %APIKEY% -Source https://nuget.org + ..\fsharp\.nuget\nuget.exe push bin\ExcelProvider.1.0.1.nupkg %APIKEY% -Source https://nuget.org git tag 1.0.1 git push https://github.com/fsprojects/ExcelProvider --tags diff --git a/README.md b/README.md index 4ff2209..effbbb0 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,9 @@ This library is for the .NET platform implementing a read-only Excel type provid ## Building -* Windows: Run *build.cmd* +* Windows: Run ./build.cmd -t Build (see build.fsx for more options to pass in as arguments after -t) * Requires dotnet core 6.0.421 or higher 6.0 level sdk to be installed. +* See DEVGUIDE.md for more information ## Maintainer(s)