Skip to content

Commit f40f761

Browse files
committed
EPPlus version 7.3.2
1 parent 5bb2d0d commit f40f761

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

appveyor7.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.3.1.{build}
1+
version: 7.3.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.3.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.3.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.3.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.3.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.3.1.{build}
17-
file_version: 7.3.1.{build}
16+
assembly_version: 7.3.3.{build}
17+
file_version: 7.3.3.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Features / Fixed issues - EPPlus 7
22
## Version 7.3.2
33
### Fixed issues
4-
* Upgraded System.Text.Json to version 8.0.4 and System.Formats.Asn1 to version 8.0.1 to adress vulnerabilities in previous versions of these libraries. See our [Security Policy](https://github.com/EPPlusSoftware/EPPlus/blob/develop7/SECURITY.md)
4+
* Upgraded System.Text.Json to version 8.0.4 and System.Formats.Asn1 to version 8.0.1 to address vulnerabilities in previous versions of these libraries. See our [Security Policy](https://github.com/EPPlusSoftware/EPPlus/blob/develop7/SECURITY.md)
55
* Upgraded Microsoft.IO.RecyclableMemoryStream from version 3.0.0 to 3.0.1.
6-
*
6+
* Fixed an issue with the MATCH function when a range was sorted in descending order.
7+
* When inserting columns, shifting right into a range, an Exception was thrown in rare cases.
8+
79
## Version 7.3.1
810
### Fixed issues
911
* Fixed duplication of conditional formatting’s which could occur on repeated saves in some cases.

src/EPPlus/EPPlus.csproj

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.3.1.0</AssemblyVersion>
5-
<FileVersion>7.3.1.0</FileVersion>
6-
<Version>7.3.1</Version>
4+
<AssemblyVersion>7.3.2.0</AssemblyVersion>
5+
<FileVersion>7.3.2.0</FileVersion>
6+
<Version>7.3.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.3.0
21+
EPPlus 7.3.2
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.3.1
29+
## Version 7.3.2
3030
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3131

32+
## Version 7.3.1
33+
* Minor features and bug fixes.
34+
3235
## Version 7.3.0
3336
* Added precision as displayd to formula calculation
3437
* Add 4 new functions
@@ -416,7 +419,8 @@
416419
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
417420

418421
Version history
419-
7.3.1 20240905 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
422+
7.3.2 20240917 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
423+
7.3.1 20240905 Minor features and bug fixes.
420424
7.3.0 20240820 Precision as displayed support in formula calculation.
421425
7.2.2 20240724 Minor features and bug fixes.
422426
7.2.1 20240702 Minor bug fixes.

0 commit comments

Comments
 (0)