Skip to content

Commit

Permalink
Version Bump v9.5.2: #494 Update pdb format for VSTS
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Jul 24, 2017
1 parent f0ef714 commit c90111f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [9.5.2] - 2017-7-24
## Fix
- Issue #494: Update pdb format for VSTS
- Thanks to [Murray Crowe](https://github.com/murraybiscuit) for the fix!

## [9.5.1] - 2017-7-20
## Fix
- Issue #494: Repair bad pdb file
Expand Down
4 changes: 2 additions & 2 deletions nuspec/Sendgrid.9.5.1.nuspec → nuspec/Sendgrid.9.5.2.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Sendgrid</id>
<version>9.5.1</version>
<version>9.5.2</version>
<title>SendGrid</title>
<authors>Elmer Thomas,SendGrid DX Team</authors>
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
Expand All @@ -12,7 +12,7 @@
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support.</summary>
<releaseNotes>## Fix
- Issue #494: Repair bad pdb file</releaseNotes>
- Issue #494: Update pdb format for VSTS</releaseNotes>
<copyright>SendGrid, Inc. 2017</copyright>
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/SendGrid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]

[assembly: AssemblyInformationalVersion("9.5.1")]
[assembly: AssemblyInformationalVersion("9.5.2")]
4 changes: 3 additions & 1 deletion src/SendGrid/SendGrid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>9.5.1</VersionPrefix>
<VersionPrefix>9.5.2</VersionPrefix>
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -15,6 +15,8 @@
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<DebugSymbols Condition=" '$(TargetFramework)' == 'net452' ">true</DebugSymbols>
<DebugType Condition=" '$(TargetFramework)' == 'net452' ">full</DebugType>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c90111f

Please sign in to comment.