Skip to content

Commit 8bdc0c0

Browse files
Release rc.9
1 parent 8888d39 commit 8bdc0c0

9 files changed

Lines changed: 26 additions & 12 deletions

File tree

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## v3.0.0-rc.9
4+
5+
---
6+
Release Date: **15.02.2026** <sup>(DMY)</sup>
7+
8+
- Fixed a bug in the PlugInLoader
9+
310
## v3.0.0-rc.8
411

512
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"packageName": "NanoXLSX",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"description": "NanoXLSX is a library to generate and read Microsoft Excel files (XLSX) in an easy and native way. This package is the meta package of NanoXLSX and should be used in most cases as dependency in your project."
55
}

Docs.IndexGenerator/Output/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h1>
4040

4141
<hr>
4242

43-
<h2>Meta Package v3.0.0-rc.8</h2>
43+
<h2>Meta Package v3.0.0-rc.9</h2>
4444
<section>
4545
<ul class="list">
4646
<li><strong>NanoXLSX</strong> — This package is the meta package of NanoXLSX and should be used in most cases as dependency in your project.</li>
@@ -49,7 +49,7 @@ <h2>Meta Package v3.0.0-rc.8</h2>
4949
<p>There is no documentation for the meta package. Please see the section <b>Dependency Package Documentation</b> for the complete API documentation.</p>
5050
</section>
5151

52-
<p class="version">Version 3.0.0-rc.8</p>
52+
<p class="version">Version 3.0.0-rc.9</p>
5353
</header>
5454

5555
<hr>

NanoXLSX.Core/Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log - NanoXLSX.Core
22

3+
## v3.0.0-rc.7
4+
5+
---
6+
Release Date: **15.02.2026**
7+
8+
- Fixed a bug in the PlugInLoader
9+
310
## v3.0.0-rc.5
411

512
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PROJECT_NUMBER = 3.0.0-rc.6
1+
PROJECT_NUMBER = 3.0.0-rc.7

NanoXLSX.Core/NanoXLSX.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2222
<PackageTags>Excel Office XLSX</PackageTags>
2323
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
24-
<Version>3.0.0-rc.6</Version>
25-
<AssemblyVersion>3.0.0-rc.6</AssemblyVersion>
26-
<FileVersion>3.0.0-rc.6</FileVersion>
24+
<Version>3.0.0-rc.7</Version>
25+
<AssemblyVersion>3.0.0-rc.7</AssemblyVersion>
26+
<FileVersion>3.0.0-rc.7</FileVersion>
2727
<RepositoryType>git</RepositoryType>
2828
<PackageReadmeFile>README.md</PackageReadmeFile>
2929
<PackageReleaseNotes>Please see https://github.com/rabanti-github/NanoXLSX/blob/master/Changelog.md for the release notes</PackageReleaseNotes>

NanoXLSX.Core/Registry/PluginLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ private static void HandleReplacingPlugIns(IEnumerable<Type> plugInTypes)
186186
{
187187
if (plugInClasses.ContainsKey(attribute.PlugInUUID))
188188
{
189-
if (attribute.PlugInOrder <= plugInClasses[attribute.PlugInUUID].Order)
189+
if (attribute.PlugInOrder >= plugInClasses[attribute.PlugInUUID].Order)
190190
{
191191
// Skip duplicates with lower order numbers
192192
plugInClasses[attribute.PlugInUUID] = new PlugInInstance(attribute.PlugInUUID, attribute.PlugInOrder, plugInType);

NanoXLSX/NanoXLSX.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<PackageReleaseNotes>Please see https://github.com/rabanti-github/NanoXLSX/blob/master/Changelog.md for the release notes</PackageReleaseNotes>
2828
<AssemblyVersion>3.0.0.0</AssemblyVersion>
2929
<FileVersion>3.0.0.0</FileVersion>
30-
<Version>3.0.0-rc.8</Version>
30+
<Version>3.0.0-rc.9</Version>
3131
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3232
<IncludeSymbols>False</IncludeSymbols>
3333
<EnableNETAnalyzers>True</EnableNETAnalyzers>
@@ -63,7 +63,7 @@
6363
</ItemGroup>
6464

6565
<ItemGroup>
66-
<PackageReference Include="NanoXLSX.Core" Version="3.0.0-rc.6" />
66+
<PackageReference Include="NanoXLSX.Core" Version="3.0.0-rc.7" />
6767
<PackageReference Include="NanoXLSX.Reader" Version="3.0.0-rc.6" />
6868
<PackageReference Include="NanoXLSX.Writer" Version="3.0.0-rc.6" />
6969
<PackageReference Include="NanoXLSX.Formatting" Version="3.0.0-rc.1" />

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
## Pre-Release v3.x
1111

12-
The pre-release of NanoXLSX is now available as [Nuget Package](https://www.nuget.org/packages/NanoXLSX/3.0.0-rc.8), version **3.0.0-rc.8**.
13-
Since there are breaking changes between NanoXLSX v2.x and v3.0.0-rc8, please see the **[Migration guide](MigrationGuide.md)**, to migrate applications from v2 to v3. Please feel free to open issues, in case of problems with the pre-release.
12+
The pre-release of NanoXLSX is now available as [Nuget Package](https://www.nuget.org/packages/NanoXLSX/3.0.0-rc.9), version **3.0.0-rc.9**.
13+
Since there are breaking changes between NanoXLSX v2.x and v3.0.0-rc9, please see the **[Migration guide](MigrationGuide.md)**, to migrate applications from v2 to v3. Please feel free to open issues, in case of problems with the pre-release.
1414

1515
There will be possibly further adaptions and additional pre-releases before the final release.
1616

0 commit comments

Comments
 (0)