Skip to content

Commit

Permalink
EPPlus version 6.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Aug 30, 2022
1 parent 1714829 commit 482d23b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 14 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 6.0.6.{build}
version: 6.0.7.{build}
branches:
only:
- develop
Expand All @@ -7,16 +7,16 @@ image: Visual Studio 2022
platform: Any CPU
init:
- ps: >-
Update-AppveyorBuild -Version "6.0.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.0.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.0.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.0.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.0.6.{build}
file_version: 6.0.6.{build}
assembly_version: 6.0.7.{build}
file_version: 6.0.7.{build}
nuget:
project_feed: true
before_build:
Expand Down
15 changes: 15 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Features / Fixed issues - EPPlus 6

## Version 6.0.7
### Minor features
* New static method Configure on ExcelPackage to configure location of config files and error handling. See [This link...](https://github.com/EPPlusSoftware/EPPlus/wiki/Configuration)
### Fixed issues
* Copying comments sometimes did not change the name in the vml drawing causing OOXML validation to complain on duplicate drawings.
* The count attribute on 'xsf' node in Styles.xml was not correctly set.
* Setting drawing coordinates did not update the xml on save if ExcelPackage.DoAdjustDrawings was set to false.
* IF function now handle errors correctly.
* Added method ExcelRangeBase.SetErrorValue to set a cell to an error value. Added static methods ExcelErrorValue.Create and ExcelErrorValue.Parse.
* Referencing a worksheet to a cell address after a colon (for example 'sheet1'!a1:'sheet1'!A3) did not work correctly in the formula calculation.
* Added RichText and TextBody properties to ExcelControlWithText.
* Removing / Clearing or inserting into a table with a Calculated Column Formula sometimes caused a corrupt workbook or an Exception.
* Removing VBA signtures did not remove the newer types of signatures, Agile and V3.
* ExcelRangeBase.ToDataTable could not export a range with no column names and a single row.

## Version 6.0.6
### Fixed issues
* Fixed an error in Positioning and sizing of form controls intruduced in 5.8.12.
Expand Down
23 changes: 14 additions & 9 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>net6.0;net5.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>6.0.6.0</AssemblyVersion>
<FileVersion>6.0.6.0</FileVersion>
<Version>6.0.6</Version>
<AssemblyVersion>6.0.7.0</AssemblyVersion>
<FileVersion>6.0.7.0</FileVersion>
<Version>6.0.7</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -17,17 +17,20 @@
<PackageTags>Excel ooxml</PackageTags>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.0.6
EPPlus 6.0.7

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.0.7
* Minor feature and Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues

## Version 6.0.6
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
* Bug fixes.

## Version 6.0.5
* Bug fixes.

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

Version history
6.0.6 20220708 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.8.12 20220708 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.0.5 20220610 Minor bug fixes.
6.0.7 20220830 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.8.13 20220830 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.0.6 20220708 Minor bug fixes.
5.8.12 20220708 Minor bug fixes.
6.0.5 20220610 Minor bug fixes.
5.8.11 20220610 Minor bug fixes.
6.0.4 20220512 Minor bug fixes.
5.8.10 20220512 Minor bug fixes.
Expand Down

0 comments on commit 482d23b

Please sign in to comment.