Skip to content

Commit 6c32bec

Browse files
Version Bump v3.1.0: PR #18 - Cache HTTP Client
1 parent 128129d commit 6c32bec

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

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

6+
## [3.1.0] - 2017-03-01
7+
### Added
8+
- [PR #18](https://github.com/sendgrid/csharp-http-client/pull/18): Cache default httpclient
9+
- Big thanks to [Niels Timmermans](https://github.com/nillis) for the pull request!
10+
611
## [3.0.0] - 2016-07-22
712
### BREAKING CHANGE
813
- While your code may continue to work as before, the async behavior has changed, as we don't block on .Result anymore

CSharpHTTPClient/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("3.0.0")]
35-
[assembly: AssemblyFileVersion("3.0.0")]
34+
[assembly: AssemblyVersion("3.1.0")]
35+
[assembly: AssemblyFileVersion("3.1.0")]
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>SendGrid.CSharp.HTTP.Client</id>
5+
<version>3.1.0</version>
6+
<title>Fluent REST API Client</title>
7+
<authors>Elmer Thomas,SendGrid DX Team</authors>
8+
<licenseUrl>https://github.com/sendgrid/csharp-http-client/blob/master/LICENSE</licenseUrl>
9+
<projectUrl>https://github.com/sendgrid/csharp-http-client</projectUrl>
10+
<iconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/brand/2016/SendGrid-Logomark.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>Quickly and easily access any REST or REST-like API using a fluent interface via method chaining and reflection.</description>
13+
<summary>Quickly and easily access any REST or REST-like API.</summary>
14+
<releaseNotes>### Added
15+
- [PR #18](https://github.com/sendgrid/csharp-http-client/pull/18): Cache default httpclient
16+
- Big thanks to [Niels Timmermans](https://github.com/nillis) for the pull request!</releaseNotes>
17+
<copyright>Copyright 2017</copyright>
18+
<language>en-US</language>
19+
<tags>SendGrid Email API REST Fluent</tags>
20+
<frameworkAssemblies>
21+
<frameworkAssembly assemblyName="System.Web.Extensions" targetFramework="" />
22+
</frameworkAssemblies>
23+
</metadata>
24+
<files>
25+
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.dll" target="lib\SendGrid.CSharp.HTTP.Client.dll" />
26+
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.dll.config" target="lib\SendGrid.CSharp.HTTP.Client.dll.config" />
27+
<file src="..\CSharpHTTPClient\bin\Release\SendGrid.CSharp.HTTP.Client.pdb" target="lib\SendGrid.CSharp.HTTP.Client.pdb" />
28+
</files>
29+
</package>

0 commit comments

Comments
 (0)