Skip to content

Commit d383e91

Browse files
committed
EPPlus version 7.0.3
1 parent 85a2128 commit d383e91

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

appveyor7.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1-
version: 7.0.2.{build}
1+
version: 7.0.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.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
10-
11-
Write-Host "7.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1210
11+
Write-Host "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
12+
install:
13+
- ps: |
14+
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
15+
& "$env:temp\dotnet-install.ps1" -Architecture x64 -Version '8.0.100' -InstallDir "$env:ProgramFiles\dotnet"
1316
dotnet_csproj:
1417
patch: true
1518
file: '**\*.csproj'
1619
version: '{version}'
17-
assembly_version: 7.0.2.{build}
18-
file_version: 7.0.2.{build}
20+
assembly_version: 7.0.3.{build}
21+
file_version: 7.0.3.{build}
1922
nuget:
2023
project_feed: true
2124
before_build:

docs/articles/fixedissues.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
## Version 7.0.3
33
### Minor Features
44
* Added Alignment and Protection properties to ExcelDxfStyle - Affects Table and Pivot Table Stylings
5+
* Added Target framework .NET 8.
56
### Fixed issues
67
* Improved handling of negation of ranges in the formula calculation.
78
* Added AlwaysAllowNull property to ToDataTableOptions parameter of the ExcelRangeBase.ToDataTable function.

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.0.2.0</AssemblyVersion>
5-
<FileVersion>7.0.2.0</FileVersion>
6-
<Version>7.0.2</Version>
4+
<AssemblyVersion>7.0.3.0</AssemblyVersion>
5+
<FileVersion>7.0.3.0</FileVersion>
6+
<Version>7.0.3</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.0.2
21+
EPPlus 7.0.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.0.2
29+
## Version 7.0.3
3030
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3131

32+
## Version 7.0.2
33+
* Bug fixes
34+
3235
## Version 7.0.1
3336
* Bug fixes
3437

@@ -351,7 +354,8 @@
351354
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
352355

353356
Version history
354-
7.0.2 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
357+
7.0.3 20231205 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
358+
7.0.2 20231123 Minor bug fixes.
355359
7.0.1 20231109 Minor bug fixes.
356360
7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7
357361
6.2.13 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues

0 commit comments

Comments
 (0)