Skip to content

Commit

Permalink
EPPlus version 6.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed May 2, 2023
1 parent c720bae commit 939e2df
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 12 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
version: 6.2.2.{build}
version: 6.2.3.{build}
branches:
only:
- develop
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.2.{build}
file_version: 6.2.2.{build}
assembly_version: 6.2.3.{build}
file_version: 6.2.3.{build}
nuget:
project_feed: true
before_build:
Expand Down
11 changes: 11 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Features / Fixed issues - EPPlus 6
## Version 6.2.3
### Fixed issues
* Setting sparklineGroups.MaxAxisType to eSparklineAxisMinMax.Group did not work.
* Extracting the worksheet xml sometimes fails when having an extLst element.
* Having a DataTable formula sometimes caused an InvalidDataException due to missing shared formula id.
* Setting ExcelRange.IsRichText caused an exception in some cases.
* Inserting columns in tables with calculated columns sometimes caused a corrupt workbook upon save.
* Having a workbook with picture-drawings with duplicate names caused Drawing.Delete(string) to fail.
* Fixed an encoding issue with data validation attributes having values containing double quotes (").
* Data validation's sometimes corrupted the workbook on save when referencing another worksheet in the formulas.

## Version 6.2.2
### Fixed issues
* Insert row did not update formula cells correctly in some cases.
Expand Down
18 changes: 11 additions & 7 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>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>6.2.2.0</AssemblyVersion>
<FileVersion>6.2.2.0</FileVersion>
<Version>6.2.2</Version>
<AssemblyVersion>6.2.3.0</AssemblyVersion>
<FileVersion>6.2.3.0</FileVersion>
<Version>6.2.3</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,20 +18,23 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.2.2
EPPlus 6.2.3

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 6.2.1
## Version 6.2.3
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues

## Version 6.2.1
## Version 6.2.2
* Bug fixes.

## Version 6.2.1
* Bug fixes.

## Version 6.2.0
* Improved performance and better support for cross-worksheet references in data validations.
* Bug fixes.
Expand Down Expand Up @@ -298,7 +301,8 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html

Version history
6.2.2 20230417 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.3 20230502 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.2 20230417 Minor bug fixes.
6.2.1 20230406 Minor bug fixes.
6.2.0 20230324 Performance update to data validation. Minor bug fixes.
6.1.3 20230224 Minor bug fixes.
Expand Down

0 comments on commit 939e2df

Please sign in to comment.