Skip to content

Commit

Permalink
EPPlus version 6.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed May 15, 2023
1 parent 21aa167 commit fcc94c1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 13 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.3.{build}
version: 6.2.4.{build}
branches:
only:
- develop
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.4.$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"
Write-Host "6.2.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.3.{build}
file_version: 6.2.3.{build}
assembly_version: 6.2.4.{build}
file_version: 6.2.4.{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.4
### Minor Features
* Added IRangeDataValidation. ClearDataValidation to clear data validations from a range.
### Fixed issues
* Having a table data source set to a defined name, and then insert rows into the range, caused the table source to be inverted into a range without inserting the rows.
* An error occured when setting the Shape.Text in some cases."Name cannot begin with the ' ' character, hexadecimal value 0x20, due to invalid xml.
* Scientific notation numbers were not being recognized in the calculation when there were leading or trailing whitespaces.
* Formulas update for Data Validation and Conditional Formatting sometimes updated the addresses wrong when inserting and deleting.
* The worksheet xml got corrupt in rare cases, when having extLst items.
* A pivot table's SourceRange property was not read on load.

## Version 6.2.3
### Fixed issues
* Setting sparklineGroups.MaxAxisType to eSparklineAxisMinMax.Group did not work.
Expand Down
20 changes: 12 additions & 8 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.3.0</AssemblyVersion>
<FileVersion>6.2.3.0</FileVersion>
<Version>6.2.3</Version>
<AssemblyVersion>6.2.4.0</AssemblyVersion>
<FileVersion>6.2.4.0</FileVersion>
<Version>6.2.4</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.3
EPPlus 6.2.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 6.2.3
## Version 6.2.4
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues

## Version 6.2.2
## Version 6.2.3
* Bug fixes.

## Version 6.2.2
* Bug fixes.

## Version 6.2.1
* Bug fixes.

Expand Down Expand Up @@ -301,8 +304,9 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html

Version history
6.2.3 20230502 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.2 20230417 Minor bug fixes.
6.2.4 20230515 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.3 20230502 Minor bug fixes.
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 fcc94c1

Please sign in to comment.