Skip to content

Commit f73a24f

Browse files
Release v.3.0.0-rc.2
1 parent b929757 commit f73a24f

File tree

13 files changed

+51
-31
lines changed

13 files changed

+51
-31
lines changed
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.1",
3+
"version": "3.0.0-rc.2",
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
@@ -44,7 +44,7 @@ <h1>
4444

4545
<hr>
4646

47-
<h2>Meta Package v3.0.0-rc.1</h2>
47+
<h2>Meta Package v3.0.0-rc.2</h2>
4848
<section>
4949
<ul class="list">
5050
<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>
@@ -53,7 +53,7 @@ <h2>Meta Package v3.0.0-rc.1</h2>
5353
<p>There is no documentation for the meta package. Please see the section <b>Dependency Package Documentation</b> for the complete API documentation.</p>
5454
</section>
5555

56-
<p class="version">Version 3.0.0-rc.1</p>
56+
<p class="version">Version 3.0.0-rc.2</p>
5757
</header>
5858

5959
<hr>

MigrationGuide.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The following guide lists all necessary changes, as well as changed behaviors of
7373
| `SheetProtectionValue.formatCells` | `SheetProtectionValue.FormatCells` | |
7474
| `SheetProtectionValue.formatColumns` | `SheetProtectionValue.FormatColumns` | |
7575
| `SheetProtectionValue.formatRows` | `SheetProtectionValue.FormatRows` | |
76-
| `SheetProtectionValue.insertColumns` | `SheetProtectionValue.InsertColumns` | |
76+
| `SheetProtectionValue.insertColumns` | `SheetProtectionValue.InsertColumns` | |
7777
| `SheetProtectionValue.insertRows` | `SheetProtectionValue.InsertRows` | |
7878
| `SheetProtectionValue.insertHyperlinks` | `SheetProtectionValue.InsertHyperlinks` | |
7979
| `SheetProtectionValue.deleteColumns` | `SheetProtectionValue.DeleteColumns` | |
@@ -118,7 +118,6 @@ The following guide lists all necessary changes, as well as changed behaviors of
118118
| `CellType.EMPTY` | `CellType.Empty` | |
119119
| `CellType.DEFAULT` | `CellType.Default` | |
120120

121-
122121
---
123122

124123
### Address (struct)

NanoXLSX.Core/Changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Change Log - NanoXLSX.Core
22

3-
## v3.0.0-rc.1
3+
## v3.0.0-rc.2
44

55
---
66
Release Date: **25.11.2025**
77

88
- Initial release of the core library
9+
10+
## v3.0.0-rc.2
11+
12+
---
13+
Release Date: **27.11.2025**
14+
15+
- Refactoring of several enums from lowercase start to uppercase start for better consistency
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PROJECT_NUMBER = 3.0.0-rc.1
1+
PROJECT_NUMBER = 3.0.0-rc.2

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.1</Version>
25-
<AssemblyVersion>3.0.0-rc.1</AssemblyVersion>
26-
<FileVersion>3.0.0-rc.1</FileVersion>
24+
<Version>3.0.0-rc.2</Version>
25+
<AssemblyVersion>3.0.0-rc.2</AssemblyVersion>
26+
<FileVersion>3.0.0-rc.2</FileVersion>
2727
<RepositoryType>git</RepositoryType>
2828
</PropertyGroup>
2929
<PropertyGroup>

NanoXLSX.Reader/Changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Change Log - NanoXLSX.Reader
22

3-
## v3.0.0-rc.1
3+
## v3.0.0-rc.2
44

55
---
66
Release Date: **25.11.2025**
77

88
- Initial release of the reader library
9+
10+
## v3.0.0-rc.2
11+
12+
---
13+
Release Date: **27.11.2025**
14+
15+
- Refactoring of several enums from lowercase start to uppercase start for better consistency
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PROJECT_NUMBER = 3.0.0-rc.1
1+
PROJECT_NUMBER = 3.0.0-rc.2

NanoXLSX.Reader/NanoXLSX.Reader.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2222
<PackageTags>Excel Office XLSX Reader</PackageTags>
23-
<Version>3.0.0-rc.1</Version>
24-
<AssemblyVersion>3.0.0-rc.1</AssemblyVersion>
25-
<FileVersion>3.0.0-rc.1</FileVersion>
23+
<Version>3.0.0-rc.2</Version>
24+
<AssemblyVersion>3.0.0-rc.2</AssemblyVersion>
25+
<FileVersion>3.0.0-rc.2</FileVersion>
2626
<RepositoryType>git</RepositoryType>
2727
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2828
<PackageIcon>NanoXLSXlib.png</PackageIcon>
@@ -52,7 +52,7 @@
5252
</ItemGroup>
5353
<ItemGroup Condition="'$(Configuration)' == 'Release'">
5454
<!--<PackageReference Include="NanoXLSX.Core" Version="3.0.*" /> -->
55-
<PackageReference Include="NanoXLSX.Core" Version="3.0.0-rc.1" />
55+
<PackageReference Include="NanoXLSX.Core" Version="3.0.0-rc.2" />
5656
</ItemGroup>
5757
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
5858
<Exec Command="@echo off&#xD;&#xA;echo PROJECT_NUMBER = $(Version) &gt; &quot;$(ProjectDir)Documentation\projectNumber.doxygen&quot;&#xD;&#xA;echo PROJECT_NAME = $(ProjectName) &gt; &quot;$(ProjectDir)Documentation\projectName.doxygen&quot;&#xD;&#xA;echo HTML_OUTPUT = ../../docs/$(ProjectName) &gt; &quot;$(ProjectDir)Documentation\outputDirectory.doxygen&quot;&#xD;&#xA;echo HTML_OUTPUT = ../../docs/$(ProjectName) &gt; &quot;$(ProjectDir)Documentation\htmlOutput.doxygen&quot;" />

NanoXLSX.Writer/Changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Change Log - NanoXLSX.Writer
22

3-
## v3.0.0-rc.1
3+
## v3.0.0-rc.2
44

55
---
66
Release Date: **25.11.2025**
77

88
- Initial release of the writer library
9+
10+
## v3.0.0-rc.2
11+
12+
---
13+
Release Date: **27.11.2025**
14+
15+
- Refactoring of several enums from lowercase start to uppercase start for better consistency

0 commit comments

Comments
 (0)