Skip to content

Commit e6dc3d7

Browse files
committed
EPPlus version 7.7.3
1 parent e8ec06a commit e6dc3d7

3 files changed

Lines changed: 17 additions & 9 deletions

File tree

appveyor7.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.7.2.{build}
1+
version: 7.7.3.{build}
22
branches:
33
only:
44
- develop7
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "7.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 7.7.2.{build}
17-
file_version: 7.7.2.{build}
16+
assembly_version: 7.7.3.{build}
17+
file_version: 7.7.3.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.7.3
3+
* Fix for FileLoadException due to System.Memory referenced by RecyclableMemoryStream.
4+
* Conditional formattings could cause invalid xml due to not using InvarianCulture when setting the numeric values.
5+
* ExcelRangeBase - LoadFromCollection/LoadFromDataTable sometimes cleared formulas outside the range.
6+
27
## Version 7.7.2
38
* Sorting a range with threaded comments, remove and the add a threaded comment sometimes throws an exception.
49
* Added custom number formats where the formatId is not a built-in format.

src/EPPlus/EPPlus.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net9.0;net8.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.7.2.0</AssemblyVersion>
5-
<FileVersion>7.7.2.0</FileVersion>
6-
<Version>7.7.2</Version>
4+
<AssemblyVersion>7.7.3.0</AssemblyVersion>
5+
<FileVersion>7.7.3.0</FileVersion>
6+
<Version>7.7.3</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,17 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.7.2
21+
EPPlus 7.7.3
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2525
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2626
Commercial licenses can be purchased from https://epplussoftware.com
2727
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.
2828

29+
## Version 7.7.3
30+
* Minor bug fixes.
31+
2932
## Version 7.7.2
3033
* Minor bug fixes.
3134

0 commit comments

Comments
 (0)