Skip to content

Commit 0692788

Browse files
committed
EPPlus version 7.1.2
1 parent 09285c3 commit 0692788

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

appveyor7.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.1.1.{build}
1+
version: 7.1.2.{build}
22
branches:
33
only:
44
- develop7
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.1.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 7.1.1.{build}
17-
file_version: 7.1.1.{build}
16+
assembly_version: 7.1.2.{build}
17+
file_version: 7.1.2.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
# Features / Fixed issues - EPPlus 7
33
## Version 7.1.2
44
### Fixed issues
5-
* Defined Names with `"` symbols no longer get extraneous `"` added when saving in epplus.
6-
* Reading in RichText data on in-line strings now works as expected.
7-
* Negations of Defined Names and Ranges in shared formulas sometimes recieved the wrong sign in the calculation as the negation flag was not cleared.
5+
* Defined Names with `"` symbols no longer get extraneous `"` added when saving in EPPlus.
6+
* Reading RichText data on in-line strings now works as expected.
7+
* Negations of Defined Names and Ranges in shared formulas sometimes received the wrong sign in the calculation as the negation flag was not cleared.
8+
* 'ExcelRangeBase.ToCollection()' auto-mapping sometimes threw an exception as the wrong property type was used.
9+
* Using 'ExcelRangeBse.LoadFromCollection' with Nullable property members in a collection now returns columns as expected.
810

911
## Version 7.1.1
1012
### Minor Features and fixed issues

src/EPPlus/EPPlus.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.1.1.0</AssemblyVersion>
5-
<FileVersion>7.1.1.0</FileVersion>
6-
<Version>7.1.1</Version>
4+
<AssemblyVersion>7.1.2.0</AssemblyVersion>
5+
<FileVersion>7.1.2.0</FileVersion>
6+
<Version>7.1.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,17 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.1.1
21+
EPPlus 7.1.2
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2525
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2626
Commercial licenses can be purchased from https://epplussoftware.com
2727
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.
2828

29+
## Version 7.1.2
30+
* Bug fixes
31+
2932
## Version 7.1.1
3033
* Bug fixes
3134

0 commit comments

Comments
 (0)