Skip to content

Commit 2f2e76d

Browse files
committed
EPPlus version 7.0.4
1 parent 52d7099 commit 2f2e76d

File tree

3 files changed

+22
-13
lines changed

3 files changed

+22
-13
lines changed

appveyor7.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
version: 7.0.3.{build}
1+
2+
version: 7.0.4.{build}
23
branches:
34
only:
45
- develop7
56
configuration: release
67
image: Visual Studio 2022
78
init:
89
- ps: >-
9-
Update-AppveyorBuild -Version "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
10+
Update-AppveyorBuild -Version "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1011
11-
Write-Host "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
12+
Write-Host "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1213
install:
1314
- ps: |
1415
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
@@ -17,8 +18,8 @@ dotnet_csproj:
1718
patch: true
1819
file: '**\*.csproj'
1920
version: '{version}'
20-
assembly_version: 7.0.3.{build}
21-
file_version: 7.0.3.{build}
21+
assembly_version: 7.0.4.{build}
22+
file_version: 7.0.4.{build}
2223
nuget:
2324
project_feed: true
2425
before_build:

docs/articles/fixedissues.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
## Version 7.0.4
33
### Minor Features
44
* Added follow dependency-chain option which allows calculating the given cells without calculating dependent cells
5-
*
5+
66
### Fixed issues
7-
* Deleting pivot tables sometimes did not clear their pivotcaches.
7+
* Deleting pivot tables sometimes did not clear their pivot caches.
8+
* The formula tokenizer did not handle single/double quotes and encoding correctly in table addresses.
9+
* The JSON export did not encode column header cells and comment texts.
10+
* Worksheet Copy did not copy images with hyperlinks correctly
11+
* ExcelRangeBase.FormulaR1C1 translation did return a correct value when having a minus operator in some cases.
812

913
## Version 7.0.3
1014
### Minor Features

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.3.0</AssemblyVersion>
5-
<FileVersion>7.0.3.0</FileVersion>
6-
<Version>7.0.3</Version>
4+
<AssemblyVersion>7.0.4.0</AssemblyVersion>
5+
<FileVersion>7.0.4.0</FileVersion>
6+
<Version>7.0.4</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.3
21+
EPPlus 7.0.4
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.3
29+
## Version 7.0.4
3030
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3131

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

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

356359
Version history
357-
7.0.3 20231205 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
360+
7.0.4 20231215 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
361+
7.0.3 20231205 Minor bug fixes.
358362
7.0.2 20231123 Minor bug fixes.
359363
7.0.1 20231109 Minor bug fixes.
360364
7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7

0 commit comments

Comments
 (0)