updated both nuget packages to incorporate bugfix

This commit is contained in:
tmenier 2014-08-28 21:14:47 -05:00
parent 759258e85c
commit 797a1022db
4 changed files with 11 additions and 9 deletions

View File

@ -3,4 +3,4 @@
[assembly: AssemblyTitle("Flurl.Http")]
[assembly: AssemblyDescription("A fluent, testable HTTP client library that extends Flurl's URL builder chain.")]
[assembly: AssemblyCopyright("Copyright © Todd Menier 2014")]
[assembly: AssemblyVersion("0.2.3")]
[assembly: AssemblyVersion("0.2.4")]

View File

@ -2,7 +2,7 @@
<package >
<metadata>
<id>Flurl.Http</id>
<version>0.2.3</version>
<version>0.2.4</version>
<title>Flurl.Http</title>
<authors>Todd Menier</authors>
<projectUrl>http://tmenier.github.io/Flurl</projectUrl>
@ -12,6 +12,7 @@
A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain.
</description>
<releaseNotes>
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.
@ -23,14 +24,14 @@
<dependencies>
<group targetFramework="net45">
<dependency id="Newtonsoft.Json" version="6.0.3" />
<dependency id="Flurl" version="1.0.1" />
<dependency id="Flurl" version="1.0.2" />
</group>
<group targetFramework="portable-net45+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10">
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
<dependency id="Microsoft.Net.Http" version="2.2.22" />
<dependency id="PCLStorage" version="0.9.6" />
<dependency id="Newtonsoft.Json" version="6.0.3" />
<dependency id="Flurl" version="1.0.1" />
<dependency id="Flurl" version="1.0.2" />
</group>
</dependencies>
</metadata>

View File

@ -2,17 +2,18 @@
<package >
<metadata>
<id>Flurl</id>
<version>1.0.1</version>
<version>1.0.2</version>
<title>Flurl</title>
<authors>Todd Menier</authors>
<projectUrl>http://tmenier.github.io/Flurl</projectUrl>
<licenseUrl>https://raw.githubusercontent.com/tmenier/Flurl/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
A portable, fluent URL builder. To make HTTP calls off the fluent chain, check out Flurl.Http.
A fluent, portable URL builder. To make HTTP calls off the fluent chain, check out Flurl.Http.
</description>
<releaseNotes>
1.0.1 - Fixed DLL version, dropped support for xbox and wp7 due to VS2013 upgrade
1.0.2 - Bugfix related to querystring with only key (thanks to @rafaelsteil)
1.0.1 - Fixed DLL version, dropped support for xbox and wp7 due to VS2013 upgrade
1.0.0 - Minor code cleanup, no API changes.
0.2.2 - Nuspec updates, no changes to binaries.
0.2.1 - Fixed a couple string extensions whose names were inconsistent with their Flurl.Url equivalent.

View File

@ -1,6 +1,6 @@
using System.Reflection;
[assembly: AssemblyTitle("Flurl")]
[assembly: AssemblyDescription("A portable, fluent URL builder.")]
[assembly: AssemblyDescription("A fluent, portable URL builder.")]
[assembly: AssemblyCopyright("Copyright © Todd Menier 2014")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyVersion("1.0.2")]