Skip to content

Commit

Permalink
Version Bump v3.1.0: PR #18 - Cache HTTP Client
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Mar 1, 2017
1 parent 128129d commit 6c32bec
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## [3.1.0] - 2017-03-01
### Added
- [PR #18](https:/sendgrid/csharp-http-client/pull/18): Cache default httpclient
- Big thanks to [Niels Timmermans](https:/nillis) for the pull request!

## [3.0.0] - 2016-07-22
### BREAKING CHANGE
- While your code may continue to work as before, the async behavior has changed, as we don't block on .Result anymore
Expand Down
4 changes: 2 additions & 2 deletions CSharpHTTPClient/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("3.0.0")]
[assembly: AssemblyFileVersion("3.0.0")]
[assembly: AssemblyVersion("3.1.0")]
[assembly: AssemblyFileVersion("3.1.0")]
29 changes: 29 additions & 0 deletions nuspec/SendGrid.CSharp.HTTP.Client.3.1.0.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>SendGrid.CSharp.HTTP.Client</id>
<version>3.1.0</version>
<title>Fluent REST API Client</title>
<authors>Elmer Thomas,SendGrid DX Team</authors>
<licenseUrl>https:/sendgrid/csharp-http-client/blob/master/LICENSE</licenseUrl>
<projectUrl>https:/sendgrid/csharp-http-client</projectUrl>
<iconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/brand/2016/SendGrid-Logomark.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Quickly and easily access any REST or REST-like API using a fluent interface via method chaining and reflection.</description>
<summary>Quickly and easily access any REST or REST-like API.</summary>
<releaseNotes>### Added
- [PR #18](https:/sendgrid/csharp-http-client/pull/18): Cache default httpclient
- Big thanks to [Niels Timmermans](https:/nillis) for the pull request!</releaseNotes>
<copyright>Copyright 2017</copyright>
<language>en-US</language>
<tags>SendGrid Email API REST Fluent</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Web.Extensions" targetFramework="" />
</frameworkAssemblies>
</metadata>
<files>
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.dll" target="lib\SendGrid.CSharp.HTTP.Client.dll" />
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.dll.config" target="lib\SendGrid.CSharp.HTTP.Client.dll.config" />
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.pdb" target="lib\SendGrid.CSharp.HTTP.Client.pdb" />
</files>
</package>

0 comments on commit 6c32bec

Please sign in to comment.