Skip to content
This repository was archived by the owner on Apr 10, 2018. It is now read-only.

Commit 1d5f87f

Browse files
committed
Merge branch 'master' into develop
2 parents 2ffc973 + e256e42 commit 1d5f87f

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

RestSharp.Portable.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Supported Platforms:
2323
<summary>Some kind of a RestSharp port to PCL</summary>
2424
<releaseNotes>- New IsSuccess proeprty for IRestResponse (fixes issue #17)
2525
- All data is converted to a string using the en-US culture
26-
- All DateTime(Offset) HTTP header values are encoded as described in RFC 1123 after conversion to UTC/GMT</releaseNotes>
26+
- All DateTime(Offset) HTTP header values are encoded as described in RFC 1123 after conversion to UTC/GMT
27+
- Synchronization of requests for the same client (fixes issue #19)</releaseNotes>
2728
<copyright>Copyright © RestSharp.Portable project 2013-2015</copyright>
2829
<language>en-US</language>
2930
<tags>PCL RestSharp portable</tags>

SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2626
// [assembly: AssemblyVersion("1.0.*")]
2727
[assembly: AssemblyVersion("2.3.0")]
28-
[assembly: AssemblyFileVersion("2.3.1")]
29-
[assembly: AssemblyInformationalVersion("2.3.1")]
28+
[assembly: AssemblyFileVersion("2.3.2")]
29+
[assembly: AssemblyInformationalVersion("2.3.2")]
3030

3131
[assembly: InternalsVisibleTo("RestSharp.Portable.OAuth, PublicKey=" +
3232
"00240000048000009400000006020000002400005253413100040000010001000f8415df6f1232" +

nuget-pack.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[OutputType([void])]
22
param(
33
[Parameter()]
4-
$version = "2.3.1",
4+
$version = "2.3.2",
55
[Parameter()]
66
$config = "Release"
77
)

0 commit comments

Comments
 (0)