Skip to content

Commit c2f231e

Browse files
committed
Version: 3.3.0!
1 parent 4f409ec commit c2f231e

6 files changed

+11
-11
lines changed

Build/NuGet/FileHelpers.ExcelNPOIStorage.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>FileHelpers.ExcelNPOIStorage</id>
5-
<version>3.2.8-beta</version>
5+
<version>3.3.0</version>
66
<title>FileHelpers.ExcelNPOIStorage</title>
77
<authors>Marcos Meli and Contributors</authors>
88
<owners>Marcos Meli</owners>
@@ -20,7 +20,7 @@
2020
<frameworkAssembly assemblyName="System.Xml" targetFramework="" />
2121
</frameworkAssemblies>
2222
<dependencies>
23-
<dependency id="FileHelpers" version="3.2.8-beta" />
23+
<dependency id="FileHelpers" version="3.3.0" />
2424
<dependency id="NPOI" version="2.2.1" />
2525
<dependency id="SharpZipLib" version="0.86.0" />
2626
</dependencies>

Build/NuGet/FileHelpers.ExcelStorage.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>FileHelpers.ExcelStorage</id>
5-
<version>3.2.8-beta</version>
5+
<version>3.3.0</version>
66
<title>FileHelpers.ExcelStorage</title>
77
<authors>Marcos Meli and Contributors</authors>
88
<owners>Marcos Meli</owners>
@@ -20,7 +20,7 @@
2020
<frameworkAssembly assemblyName="System.Xml" targetFramework="" />
2121
</frameworkAssemblies>
2222
<dependencies>
23-
<dependency id="FileHelpers" version="3.2.8-beta" />
23+
<dependency id="FileHelpers" version="3.3.0" />
2424
<dependency id="Microsoft.Office.Interop.Excel" version="12.0.4518.1014" />
2525
</dependencies>
2626
</metadata>

Build/NuGet/FileHelpers.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>FileHelpers</id>
5-
<version>3.2.8-beta</version>
5+
<version>3.3.0</version>
66
<title>FileHelpers</title>
77
<authors>Marcos Meli and Contributors</authors>
88
<owners>Marcos Meli</owners>

Build/setVersion.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$AssemblyVersion = "3.2.8"
2-
$SemanticVersion = $AssemblyVersion + "-beta" #for stable version, set postfix to empty
1+
$AssemblyVersion = "3.3.0"
2+
$SemanticVersion = $AssemblyVersion + "" #for stable version, set postfix to empty
33

44
function Update-NuGetVersion ([string] $filename, [string] $versionNumber){
55
$content = Get-Content $filename

FileHelpers/FileHelpers.NetStandard.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<DelaySign>false</DelaySign>
77
<AssemblyName>FileHelpers</AssemblyName>
88
<RootNamespace>FileHelpers</RootNamespace>
9-
<Version>3.2.8-beta</Version>
9+
<Version>3.3.0</Version>
1010
<Description>A free and easy to use .NET library to read/write data from fixed length or delimited records in files, strings or streams</Description>
1111
<Company>Devoo</Company>
1212
<Product>FileHelpers http://www.filehelpers.net</Product>

FileHelpers/VersionInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
using System.Runtime.InteropServices;
33

44
// The version of the Library
5-
[assembly : AssemblyVersion("3.2.8")]
6-
[assembly : AssemblyFileVersion("3.2.8")]
7-
[assembly : AssemblyInformationalVersion("3.2.8-beta")]
5+
[assembly : AssemblyVersion("3.3.0")]
6+
[assembly : AssemblyFileVersion("3.3.0")]
7+
[assembly : AssemblyInformationalVersion("3.3.0")]
88

99
[assembly : AssemblyDescription("A free and easy to use .NET library to read/write data from fixed length or delimited records in files, strings or streams")]
1010
[assembly : AssemblyProduct("FileHelpers http://www.filehelpers.net")]

0 commit comments

Comments
 (0)