This commit is contained in:
2014-06-25 14:41:42 +02:00
parent 97919cdd18
commit 140e645e86
3 changed files with 11 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
### 4.1.3 (2014-06-25)
- Only dispose response if available
### 4.1.2 (2014-06-18)
- Add force param to login+registration
+5 -1
View File
@@ -260,7 +260,11 @@ namespace PocketSharp
finally
{
request.Dispose();
response.Dispose();
if (response != null)
{
response.Dispose();
}
}
// cache response
+2 -2
View File
@@ -22,5 +22,5 @@
// 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("4.1.2")]
[assembly: AssemblyFileVersion("4.1.2")]
[assembly: AssemblyVersion("4.1.3")]
[assembly: AssemblyFileVersion("4.1.3")]