Skip to content

Commit

Permalink
Version: 3.3.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
mcavigelli committed Jun 29, 2018
1 parent 4f409ec commit c2f231e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Build/NuGet/FileHelpers.ExcelNPOIStorage.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>FileHelpers.ExcelNPOIStorage</id>
<version>3.2.8-beta</version>
<version>3.3.0</version>
<title>FileHelpers.ExcelNPOIStorage</title>
<authors>Marcos Meli and Contributors</authors>
<owners>Marcos Meli</owners>
Expand All @@ -20,7 +20,7 @@
<frameworkAssembly assemblyName="System.Xml" targetFramework="" />
</frameworkAssemblies>
<dependencies>
<dependency id="FileHelpers" version="3.2.8-beta" />
<dependency id="FileHelpers" version="3.3.0" />
<dependency id="NPOI" version="2.2.1" />
<dependency id="SharpZipLib" version="0.86.0" />
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions Build/NuGet/FileHelpers.ExcelStorage.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>FileHelpers.ExcelStorage</id>
<version>3.2.8-beta</version>
<version>3.3.0</version>
<title>FileHelpers.ExcelStorage</title>
<authors>Marcos Meli and Contributors</authors>
<owners>Marcos Meli</owners>
Expand All @@ -20,7 +20,7 @@
<frameworkAssembly assemblyName="System.Xml" targetFramework="" />
</frameworkAssemblies>
<dependencies>
<dependency id="FileHelpers" version="3.2.8-beta" />
<dependency id="FileHelpers" version="3.3.0" />
<dependency id="Microsoft.Office.Interop.Excel" version="12.0.4518.1014" />
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Build/NuGet/FileHelpers.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>FileHelpers</id>
<version>3.2.8-beta</version>
<version>3.3.0</version>
<title>FileHelpers</title>
<authors>Marcos Meli and Contributors</authors>
<owners>Marcos Meli</owners>
Expand Down
4 changes: 2 additions & 2 deletions Build/setVersion.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$AssemblyVersion = "3.2.8"
$SemanticVersion = $AssemblyVersion + "-beta" #for stable version, set postfix to empty
$AssemblyVersion = "3.3.0"
$SemanticVersion = $AssemblyVersion + "" #for stable version, set postfix to empty

function Update-NuGetVersion ([string] $filename, [string] $versionNumber){
$content = Get-Content $filename
Expand Down
2 changes: 1 addition & 1 deletion FileHelpers/FileHelpers.NetStandard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<DelaySign>false</DelaySign>
<AssemblyName>FileHelpers</AssemblyName>
<RootNamespace>FileHelpers</RootNamespace>
<Version>3.2.8-beta</Version>
<Version>3.3.0</Version>
<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>
<Company>Devoo</Company>
<Product>FileHelpers http://www.filehelpers.net</Product>
Expand Down
6 changes: 3 additions & 3 deletions FileHelpers/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
using System.Runtime.InteropServices;

// The version of the Library
[assembly : AssemblyVersion("3.2.8")]
[assembly : AssemblyFileVersion("3.2.8")]
[assembly : AssemblyInformationalVersion("3.2.8-beta")]
[assembly : AssemblyVersion("3.3.0")]
[assembly : AssemblyFileVersion("3.3.0")]
[assembly : AssemblyInformationalVersion("3.3.0")]

[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")]
[assembly : AssemblyProduct("FileHelpers http://www.filehelpers.net")]
Expand Down

0 comments on commit c2f231e

Please sign in to comment.