Skip to content

Commit

Permalink
Fixed issue #7 for adding WithUri overload for formatting with argume…
Browse files Browse the repository at this point in the history
…nts.
  • Loading branch information
toddmeinershagen committed Jan 16, 2015
1 parent 9ee03c4 commit 634eccb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions James.Testing.Rest/James.Testing.Rest.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<projectUrl>https://github.com/toddmeinershagen/James.Testing</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes><![CDATA[Added the ability to construct a Request with querystring parameters that are arrays. Example: Request.WithUri("http://someuri.com").WithQuery(new { id= 2, codes = new[]{123, 456} }) would render as http://someuri.com?id=2&codes=123&codes=456 added by using ]]></releaseNotes>
<releaseNotes><![CDATA[Added overload for WithUri() that accepts a list of objects to format the url. Example: Request.WithUri("http://someuri.com/{0}", 12345) would render as http://someuri.com/12345.]]></releaseNotes>
<copyright>Copyright 2014</copyright>
<tags>test .net dotnet testing rest</tags>
<dependencies>
<dependency id="James.Testing" version="1.0.7.0"></dependency>
<dependency id="James.Testing" version="1.0.9.0"></dependency>
</dependencies>
</metadata>
</package>
4 changes: 2 additions & 2 deletions James.Testing.Rest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// 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("0.6.3.0")]
[assembly: AssemblyFileVersion("0.6.3.0")]
[assembly: AssemblyVersion("0.6.4.0")]
[assembly: AssemblyFileVersion("0.6.4.0")]

[assembly: InternalsVisibleTo("James.Testing.Rest.IntegrationTests")]
4 changes: 2 additions & 2 deletions James.Testing/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// 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("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
[assembly: AssemblyVersion("1.0.9.0")]
[assembly: AssemblyFileVersion("1.0.9.0")]

[assembly: InternalsVisibleTo("James.Testing.Rest")]

0 comments on commit 634eccb

Please sign in to comment.