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

Commit f1c8851

Browse files
committed
Bumped version
1 parent bf66ca1 commit f1c8851

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

RestSharp.Portable.nuspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ Supported Platforms:
2121
- Xamarin iOS / MonoTouch
2222
- Portable Class Libraries</description>
2323
<summary>Some kind of a RestSharp port to PCL</summary>
24-
<releaseNotes>- New IsSuccess proeprty for IRestResponse (fixes issue #17)</releaseNotes>
24+
<releaseNotes>- New IsSuccess proeprty for IRestResponse (fixes issue #17)
25+
- 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>
2527
<copyright>Copyright © RestSharp.Portable project 2013-2015</copyright>
2628
<language>en-US</language>
2729
<tags>PCL RestSharp portable</tags>

SharedAssemblyInfo.cs

+2-2
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.0")]
29-
[assembly: AssemblyInformationalVersion("2.3.0")]
28+
[assembly: AssemblyFileVersion("2.3.1")]
29+
[assembly: AssemblyInformationalVersion("2.3.1")]
3030

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

nuget-pack.ps1

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

0 commit comments

Comments
 (0)