Skip to content

Commit

Permalink
Update version to 0.34
Browse files Browse the repository at this point in the history
Add ExplicitExports="false" to NuGet .dna file template.
  • Loading branch information
govert committed Sep 27, 2015
1 parent 88f4f2a commit 37326da
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions Distribution/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 0.34 (???)
------------------
* Add ExplicitExports="false" to NuGet .dna file template

Version 0.33 (9 September 2015)
-------------------------------
* Improve RtdObserver/Async array function handling to ensure RTD DisconnectData when complete.
Expand Down
4 changes: 2 additions & 2 deletions Package/Excel-DNA.Lib/Excel-DNA.Lib.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Excel-DNA.Lib</id>
<version>0.33.9</version>
<version>0.34.0-dev1</version>
<title>Excel-DNA Reference Library</title>
<authors>Govert van Drimmelen</authors>
<owners>Govert van Drimmelen</owners>
Expand All @@ -13,7 +13,7 @@
<summary>Reference library package for Excel-DNA.</summary>
<tags>excel exceldna udf excel-dna</tags>
<dependencies>
<dependency id="ExcelDna.Integration" version="0.33.9" />
<dependency id="ExcelDna.Integration" version="0.34.0-dev1" />
</dependencies>
</metadata>
</package>
4 changes: 2 additions & 2 deletions Package/Excel-DNA/Excel-DNA.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Excel-DNA</id>
<version>0.33.9</version>
<version>0.34.0-dev1</version>
<title>Excel-DNA</title>
<authors>Govert van Drimmelen</authors>
<owners>Govert van Drimmelen</owners>
Expand All @@ -13,7 +13,7 @@
<summary>Excel-DNA is an independent project to integrate .NET into Excel.</summary>
<tags>excel exceldna udf excel-dna</tags>
<dependencies>
<dependency id="ExcelDna.AddIn" version="0.33.9" />
<dependency id="ExcelDna.AddIn" version="0.34.0-dev1" />
</dependencies>
</metadata>
</package>
4 changes: 2 additions & 2 deletions Package/ExcelDna.AddIn/ExcelDna.AddIn.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ExcelDna.AddIn</id>
<version>0.33.9</version>
<version>0.34.0-dev1</version>
<title>Excel-DNA</title>
<authors>Govert van Drimmelen</authors>
<owners>Govert van Drimmelen</owners>
Expand All @@ -21,7 +21,7 @@
<summary>Excel-DNA is an independent project to integrate .NET into Excel.</summary>
<tags>excel exceldna udf excel-dna</tags>
<dependencies>
<dependency id="ExcelDna.Integration" version="[0.33.9,0.34)" />
<dependency id="ExcelDna.Integration" version="[0.34.0,0.35)" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion Package/ExcelDna.AddIn/content/ExcelDna-Template.dna
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<DnaLibrary Name="%ProjectName% Add-In" RuntimeVersion="v4.0">
<ExternalLibrary Path="%OutputFileName%" LoadFromBytes="true" Pack="true" />
<ExternalLibrary Path="%OutputFileName%" ExplicitExports="false" LoadFromBytes="true" Pack="true" />

<!--
The RuntimeVersion attribute above allows two settings:
Expand Down
2 changes: 1 addition & 1 deletion Package/ExcelDna.Integration/ExcelDna.Integration.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ExcelDna.Integration</id>
<version>0.33.9</version>
<version>0.34.0-dev1</version>
<title>Excel-DNA Reference Library</title>
<authors>Govert van Drimmelen</authors>
<owners>Govert van Drimmelen</owners>
Expand Down
2 changes: 1 addition & 1 deletion Package/pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if ($Env:PLATFORM -eq "Any CPU")
if (($Env:PLATFORM -eq "x64") -and ($Env:CONFIGURATION -eq "Release"))
{
Write-Host "Performing NuGet pack after final build job"
$version = "0.33.9." + $Env:APPVEYOR_BUILD_NUMBER
$version = "0.34.0-dev" + $Env:APPVEYOR_BUILD_NUMBER
nuget pack $root\Package\ExcelDna.Integration\ExcelDna.Integration.nuspec -Version $version
nuget pack $root\Package\ExcelDna.AddIn\ExcelDna.AddIn.nuspec -Version $version
}
Expand Down
4 changes: 2 additions & 2 deletions Source/ExcelDna.Integration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.33.*")]
[assembly: AssemblyFileVersion("0.33.9.1")]
[assembly: AssemblyVersion("0.34.*")]
[assembly: AssemblyFileVersion("0.34.0.1")]
4 changes: 2 additions & 2 deletions Source/ExcelDna.Loader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.33.*")]
[assembly: AssemblyFileVersion("0.33.9.1")]
[assembly: AssemblyVersion("0.34.*")]
[assembly: AssemblyFileVersion("0.34.0.1")]
8 changes: 4 additions & 4 deletions Source/ExcelDna/ExcelDna.rc
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,33,9,1
PRODUCTVERSION 0,33,9,1
FILEVERSION 0,34,0,1
PRODUCTVERSION 0,34,0,1
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -73,12 +73,12 @@ BEGIN
VALUE "Comments", "Unmanaged loader shim for Excel-DNA Add-Ins"
VALUE "CompanyName", "Govert van Drimmelen"
VALUE "FileDescription", "Excel-DNA Dynamic Link Library"
VALUE "FileVersion", "0.33.9.1"
VALUE "FileVersion", "0.34.0.1"
VALUE "InternalName", "ExcelDna"
VALUE "LegalCopyright", "Copyright (C) 2005-2015 Govert van Drimmelen"
VALUE "OriginalFilename", "ExcelDna.xll"
VALUE "ProductName", "Excel-DNA Add-In Framework for Microsoft Excel"
VALUE "ProductVersion", "0.33.9.1"
VALUE "ProductVersion", "0.34"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions Source/ExcelDnaPack/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.33.*")]
[assembly: AssemblyFileVersion("0.33.9.1")]
[assembly: AssemblyVersion("0.34.*")]
[assembly: AssemblyFileVersion("0.34.0.1")]

0 comments on commit 37326da

Please sign in to comment.