up'd Flurl.Http version to 0.6.1

This commit is contained in:
tmenier 2015-06-25 14:44:38 -05:00
parent ecacdd70c4
commit db4e54fae2
2 changed files with 20 additions and 19 deletions

View File

@ -2,7 +2,7 @@
<package >
<metadata>
<id>Flurl.Http</id>
<version>0.6.0</version>
<version>0.6.1</version>
<title>Flurl.Http</title>
<authors>Todd Menier</authors>
<projectUrl>http://tmenier.github.io/Flurl</projectUrl>
@ -13,23 +13,24 @@
A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain.
</description>
<releaseNotes>
0.6.0 - Added support for cancellation tokens, PATCH, string request bodies.
0.5.3 - Updated Flurl dependency to 1.0.7.
0.5.2 - Allowed HTTP status at the individual client/call level, i.e. url.AllowHttpStatus("3xx"), url.AllowAnyHttpStatus()
0.5.1 - Configure which HTTP statuses won't throw exceptions, i.e. FlurlHttp.Configure(c => c.AllowedHttpStatusRange = "100-299,4xx");
0.5.0 - Added deserialization helpers for error responses (FlurlHttpException.FlurlHttpException.GetResponseJson, etc).
0.4.2 - Updated Flurl dependency to 1.0.6.
0.4.1 - GitHub #25 - some exceptions not triggering global OnError.
0.4.0 - Client lifetime management - see http://bit.ly/1zqmuLA.
0.3.0 - Added support for sending cookies (WithCookie/WithCookies), including breaking change to IHttpClientFactory.
0.2.5 - Added hook to create HttpClientHandler from custom factory, updated Flurl dependency.
0.2.4 - Updated Flurl dependency for PCL to 1.0.2.
0.2.3 - New properties added to HttpCall: Url, Completed, Succeeded, HttpStatus.
0.2.2 - Updated Flurl dependency for PCL to 1.0.1.
0.2.1 - Added support for getting streams and byte arrays.
0.2.0 - Added .NET 4.5 specific version with fewer dependencies.
0.1.3 - Added support for HEAD requests via HeadAsync (thanks to @benb1n).
</releaseNotes>
0.6.1 - Fixed possibly dictionary lookup bug (github #34).
0.6.0 - Added support for cancellation tokens, PATCH, string request bodies.
0.5.3 - Updated Flurl dependency to 1.0.7.
0.5.2 - Allowed HTTP status at the individual client/call level, i.e. url.AllowHttpStatus("3xx"), url.AllowAnyHttpStatus()
0.5.1 - Configure which HTTP statuses won't throw exceptions, i.e. FlurlHttp.Configure(c => c.AllowedHttpStatusRange = "100-299,4xx");
0.5.0 - Added deserialization helpers for error responses (FlurlHttpException.FlurlHttpException.GetResponseJson, etc).
0.4.2 - Updated Flurl dependency to 1.0.6.
0.4.1 - GitHub #25 - some exceptions not triggering global OnError.
0.4.0 - Client lifetime management - see http://bit.ly/1zqmuLA.
0.3.0 - Added support for sending cookies (WithCookie/WithCookies), including breaking change to IHttpClientFactory.
0.2.5 - Added hook to create HttpClientHandler from custom factory, updated Flurl dependency.
0.2.4 - Updated Flurl dependency for PCL to 1.0.2.
0.2.3 - New properties added to HttpCall: Url, Completed, Succeeded, HttpStatus.
0.2.2 - Updated Flurl dependency for PCL to 1.0.1.
0.2.1 - Added support for getting streams and byte arrays.
0.2.0 - Added .NET 4.5 specific version with fewer dependencies.
0.1.3 - Added support for HEAD requests via HeadAsync (thanks to @benb1n).
</releaseNotes>
<tags>httpclient rest json http fluent portable url uri tdd assert async</tags>
<dependencies>
<group targetFramework="net45">

View File

@ -3,4 +3,4 @@
[assembly: AssemblyTitle("Flurl.Http")]
[assembly: AssemblyDescription("A fluent, testable, wrist-friendly HTTP client library.")]
[assembly: AssemblyCopyright("Copyright © Todd Menier 2015")]
[assembly: AssemblyVersion("0.6.0")]
[assembly: AssemblyVersion("0.6.1")]