Skip to content

Commit

Permalink
EPPlus version 6.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jan 10, 2024
1 parent 8dcfdba commit efa6455
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
10 changes: 5 additions & 5 deletions appveyor6.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
version: 6.2.15.{build}
version: 6.2.16.{build}
branches:
only:
- develop6
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.15.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.16.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.15.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.16.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.15.{build}
file_version: 6.2.15.{build}
assembly_version: 6.2.16.{build}
file_version: 6.2.16.{build}
nuget:
project_feed: true
before_build:
Expand Down
4 changes: 4 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
## Version 6.2.16
### Fixed issues
* ToDataTable didn't handle RichText correctly when exporting values
* Pivot table fields with a specified subtotal function sometimes caused the workbook to become corrupt.
* Improved performance when opening files with many defined names in Excel.
* Fixes and issue where reading a workbook fails due to invalid xml.

## Version 6.2.15
### Fixed issues
* The JSON export did not encode column header cells and comment texts.
Expand Down
14 changes: 9 additions & 5 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.15.0</AssemblyVersion>
<FileVersion>6.2.15.0</FileVersion>
<Version>6.2.15</Version>
<AssemblyVersion>6.2.16.0</AssemblyVersion>
<FileVersion>6.2.16.0</FileVersion>
<Version>6.2.16</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,14 +18,17 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.2.15
EPPlus 6.2.16

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.16
* Bug fixes.

## Version 6.2.15
* Bug fixes.

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

Version history
6.2.15 20231215 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.16 20240110 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.15 20231215 Minor bug fixes.
6.2.14 20231205 Minor bug fixes.
6.2.13 20231123 Minor bug fixes.
6.2.12 20231109 Minor bug fixes.
Expand Down

0 comments on commit efa6455

Please sign in to comment.