Skip to content

Commit 7e1494a

Browse files
committed
1.1.0 release
1 parent 228bf47 commit 7e1494a

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

DynamicRestProxy.Portable/DynamicRestClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ namespace DynamicRestProxy.PortableHttpClient
1414
/// </summary>
1515
public class DynamicRestClient : RestProxy
1616
{
17-
private string _baseUrl;
18-
private DynamicRestClientDefaults _defaults;
19-
private Func<HttpRequestMessage, CancellationToken, Task> _configureRequest;
17+
private readonly string _baseUrl;
18+
private readonly DynamicRestClientDefaults _defaults;
19+
private readonly Func<HttpRequestMessage, CancellationToken, Task> _configureRequest;
2020

2121
/// <summary>
2222
/// ctor

DynamicRestProxy.Portable/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
// You can specify all the values or you can default the Build and Revision Numbers
2727
// by using the '*' as shown below:
2828
// [assembly: AssemblyVersion("1.0.*")]
29-
[assembly: AssemblyVersion("1.0.5.0")]
30-
[assembly: AssemblyFileVersion("1.0.5.0")]
29+
[assembly: AssemblyVersion("1.1.0.0")]
30+
[assembly: AssemblyFileVersion("1.1.0.0")]
3131
//[assembly: System.CLSCompliant(true)]

NuGet.DynamicRestClient/NuGet.exe

1 KB
Binary file not shown.

NuGet.DynamicRestClient/Package.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<releaseNotes>
1313
Add patch verb
1414
Add UserAgent
15-
Remove dependency on abstract DynamicRextProxy dll and package
15+
Remove dependency on abstract DynamicRestProxy dll and package
1616
</releaseNotes>
1717
<summary>
1818
</summary>
@@ -24,7 +24,7 @@
2424
<copyright>Copyright Don Kackman 2014</copyright>
2525
<dependencies>
2626
<group targetFramework="portable-windows8+net45+wp8+win8+wpa81+windowsphone8+sl5">
27-
<dependency id="Newtonsoft.Json" version="6.0.5" />
27+
<dependency id="Newtonsoft.Json" version="6.0.6" />
2828
<dependency id="Microsoft.Net.Http" version="2.2.28" />
2929
<dependency id="Microsoft.Bcl" version="1.1.9" />
3030
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
Binary file not shown.

RestProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public override int GetHashCode()
181181
}
182182

183183
/// <summary>
184-
/// <see cref="System.Object.Equals"/>
184+
/// <see cref="System.Object.Equals(System.Object)"/>
185185
/// </summary>
186186
/// <param name="obj"></param>
187187
/// <returns>compares the complete url as a string to obj</returns>

0 commit comments

Comments
 (0)