diff --git a/appveyor7.yml b/appveyor7.yml index 087813db5..179e7fb4a 100644 --- a/appveyor7.yml +++ b/appveyor7.yml @@ -1,4 +1,4 @@ -version: 7.1.1.{build} +version: 7.1.2.{build} branches: only: - develop7 @@ -6,15 +6,15 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "7.1.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Write-Host "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 7.1.1.{build} - file_version: 7.1.1.{build} + assembly_version: 7.1.2.{build} + file_version: 7.1.2.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 6e528f8d4..9fc2d5aeb 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -2,9 +2,11 @@ # Features / Fixed issues - EPPlus 7 ## Version 7.1.2 ### Fixed issues -* Defined Names with `"` symbols no longer get extraneous `"` added when saving in epplus. -* Reading in RichText data on in-line strings now works as expected. -* Negations of Defined Names and Ranges in shared formulas sometimes recieved the wrong sign in the calculation as the negation flag was not cleared. +* Defined Names with `"` symbols no longer get extraneous `"` added when saving in EPPlus. +* Reading RichText data on in-line strings now works as expected. +* Negations of Defined Names and Ranges in shared formulas sometimes received the wrong sign in the calculation as the negation flag was not cleared. +* 'ExcelRangeBase.ToCollection()' auto-mapping sometimes threw an exception as the wrong property type was used. +* Using 'ExcelRangeBse.LoadFromCollection' with Nullable property members in a collection now returns columns as expected. ## Version 7.1.1 ### Minor Features and fixed issues diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 21168f4da..5d92953b6 100644 --- a/src/EPPlus/EPPlus.csproj +++ b/src/EPPlus/EPPlus.csproj @@ -1,9 +1,9 @@  net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35 - 7.1.1.0 - 7.1.1.0 - 7.1.1 + 7.1.2.0 + 7.1.2.0 + 7.1.2 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 7.1.1 + EPPlus 7.1.2 IMPORTANT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. @@ -26,6 +26,9 @@ Commercial licenses can be purchased from https://epplussoftware.com This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL. + ## Version 7.1.2 + * Bug fixes + ## Version 7.1.1 * Bug fixes