Skip to content

Commit

Permalink
EPPlus version 7.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Dec 15, 2023
1 parent 52d7099 commit 2f2e76d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 13 deletions.
11 changes: 6 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
version: 7.0.3.{build}

version: 7.0.4.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
install:
- ps: |
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
Expand All @@ -17,8 +18,8 @@ dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.0.3.{build}
file_version: 7.0.3.{build}
assembly_version: 7.0.4.{build}
file_version: 7.0.4.{build}
nuget:
project_feed: true
before_build:
Expand Down
8 changes: 6 additions & 2 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
## Version 7.0.4
### Minor Features
* Added follow dependency-chain option which allows calculating the given cells without calculating dependent cells
*

### Fixed issues
* Deleting pivot tables sometimes did not clear their pivotcaches.
* Deleting pivot tables sometimes did not clear their pivot caches.
* The formula tokenizer did not handle single/double quotes and encoding correctly in table addresses.
* The JSON export did not encode column header cells and comment texts.
* Worksheet Copy did not copy images with hyperlinks correctly
* ExcelRangeBase.FormulaR1C1 translation did return a correct value when having a minus operator in some cases.

## Version 7.0.3
### Minor Features
Expand Down
16 changes: 10 additions & 6 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.0.3.0</AssemblyVersion>
<FileVersion>7.0.3.0</FileVersion>
<Version>7.0.3</Version>
<AssemblyVersion>7.0.4.0</AssemblyVersion>
<FileVersion>7.0.4.0</FileVersion>
<Version>7.0.4</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,17 +18,20 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.0.3
EPPlus 7.0.4

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.0.3
## Version 7.0.4
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.0.3
* Bug fixes

## Version 7.0.2
* Bug fixes

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

Version history
7.0.3 20231205 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.4 20231215 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.3 20231205 Minor bug fixes.
7.0.2 20231123 Minor bug fixes.
7.0.1 20231109 Minor bug fixes.
7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7
Expand Down

0 comments on commit 2f2e76d

Please sign in to comment.