Skip to content

Commit 2f3a03c

Browse files
committed
EPPlus version 7.0.5
1 parent f94ec88 commit 2f3a03c

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed

appveyor7.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
1-
2-
version: 7.0.4.{build}
1+
version: 7.0.5.{build}
32
branches:
43
only:
54
- develop7
65
configuration: release
76
image: Visual Studio 2022
87
init:
98
- ps: >-
10-
Update-AppveyorBuild -Version "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1110
12-
Write-Host "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
13-
install:
14-
- ps: |
15-
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
16-
& "$env:temp\dotnet-install.ps1" -Architecture x64 -Version '8.0.100' -InstallDir "$env:ProgramFiles\dotnet"
11+
Write-Host "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1712
dotnet_csproj:
1813
patch: true
1914
file: '**\*.csproj'
2015
version: '{version}'
21-
assembly_version: 7.0.4.{build}
22-
file_version: 7.0.4.{build}
16+
assembly_version: 7.0.5.{build}
17+
file_version: 7.0.5.{build}
2318
nuget:
2419
project_feed: true
2520
before_build:

docs/articles/fixedissues.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.0.5
3+
### Fixed issues
4+
* Calculating formulas with expressions that had double cell negations, returned an incorrect result.
5+
* Calculating a formula that had a negation of an empty cell returned a #VALUE! error.
6+
* Pivot table fields with a specified subtotal function sometimes caused the workbook to become corrupt.
7+
* Deleting a worksheet with hyperlinks that referes to an intenal address caused an exception.
8+
29
## Version 7.0.4
310
### Minor Features
411
* Added follow dependency-chain option which allows calculating the given cells without calculating dependent cells

src/EPPlus/EPPlus.csproj

+10-6
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.0.4.0</AssemblyVersion>
5-
<FileVersion>7.0.4.0</FileVersion>
6-
<Version>7.0.4</Version>
4+
<AssemblyVersion>7.0.5.0</AssemblyVersion>
5+
<FileVersion>7.0.5.0</FileVersion>
6+
<Version>7.0.5</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.0.4
21+
EPPlus 7.0.5
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.0.4
29+
## Version 7.0.5
3030
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3131

32+
## Version 7.0.4
33+
* Bug fixes
34+
3235
## Version 7.0.3
3336
* Bug fixes
3437

@@ -357,7 +360,8 @@
357360
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
358361

359362
Version history
360-
7.0.4 20231215 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
363+
7.0.5 20231222 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
364+
7.0.4 20231215 Minor bug fixes.
361365
7.0.3 20231205 Minor bug fixes.
362366
7.0.2 20231123 Minor bug fixes.
363367
7.0.1 20231109 Minor bug fixes.

0 commit comments

Comments
 (0)