Skip to content

Commit

Permalink
EPPlus version 7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Apr 23, 2024
1 parent 09285c3 commit 0692788
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 7.1.1.{build}
version: 7.1.2.{build}
branches:
only:
- develop7
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:
Expand Down
8 changes: 5 additions & 3 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 7 additions & 4 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.1.1.0</AssemblyVersion>
<FileVersion>7.1.1.0</FileVersion>
<Version>7.1.1</Version>
<AssemblyVersion>7.1.2.0</AssemblyVersion>
<FileVersion>7.1.2.0</FileVersion>
<Version>7.1.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,14 +18,17 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
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.
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
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

Expand Down

0 comments on commit 0692788

Please sign in to comment.