Skip to content

Commit

Permalink
EPPlus version 7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Sep 16, 2024
1 parent 5bb2d0d commit f40f761
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 7.3.1.{build}
version: 7.3.3.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.3.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.3.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.3.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.3.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.3.1.{build}
file_version: 7.3.1.{build}
assembly_version: 7.3.3.{build}
file_version: 7.3.3.{build}
nuget:
project_feed: true
before_build:
Expand Down
6 changes: 4 additions & 2 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Features / Fixed issues - EPPlus 7
## Version 7.3.2
### Fixed issues
* 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)
* 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)
* Upgraded Microsoft.IO.RecyclableMemoryStream from version 3.0.0 to 3.0.1.
*
* Fixed an issue with the MATCH function when a range was sorted in descending order.
* When inserting columns, shifting right into a range, an Exception was thrown in rare cases.

## Version 7.3.1
### Fixed issues
* Fixed duplication of conditional formatting’s which could occur on repeated saves in some cases.
Expand Down
16 changes: 10 additions & 6 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>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.3.1.0</AssemblyVersion>
<FileVersion>7.3.1.0</FileVersion>
<Version>7.3.1</Version>
<AssemblyVersion>7.3.2.0</AssemblyVersion>
<FileVersion>7.3.2.0</FileVersion>
<Version>7.3.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,17 +18,20 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.3.0
EPPlus 7.3.2

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 7.3.1
## Version 7.3.2
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.3.1
* Minor features and bug fixes.

## Version 7.3.0
* Added precision as displayd to formula calculation
* Add 4 new functions
Expand Down Expand Up @@ -416,7 +419,8 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html

Version history
7.3.1 20240905 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.3.2 20240917 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.3.1 20240905 Minor features and bug fixes.
7.3.0 20240820 Precision as displayed support in formula calculation.
7.2.2 20240724 Minor features and bug fixes.
7.2.1 20240702 Minor bug fixes.
Expand Down

0 comments on commit f40f761

Please sign in to comment.