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

Commit 62dfe00

Browse files
committed
Bumped versions to 2.1.0, because all open issues are fixed now.
1 parent d57ce60 commit 62dfe00

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

RestSharp.Portable.Encodings.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Supported Platforms:
2121
- Xamarin iOS / MonoTouch
2222
- Portable Class Libraries</description>
2323
<summary>Library that will contain some standard Content-Encoding handlers</summary>
24-
<releaseNotes>- IRestClient now implements IDisposable (Fixes issue #11)</releaseNotes>
24+
<releaseNotes>- Parallel release (Issues #11 and #12 fixed)</releaseNotes>
2525
<copyright>Copyright © RestSharp.Portable project 2013-2015</copyright>
2626
<language>en-US</language>
2727
<tags>PCL RestSharp portable encoding gzip</tags>

RestSharp.Portable.OAuth.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Supported Platforms:
2222
- Xamarin iOS / MonoTouch
2323
- Portable Class Libraries</description>
2424
<summary>OAuth authenticator</summary>
25-
<releaseNotes>- IRestClient now implements IDisposable (Fixes issue #11)</releaseNotes>
25+
<releaseNotes>- Parallel release (Issues #11 and #12 fixed)</releaseNotes>
2626
<copyright>Copyright © John Sheehan and RestSharp.Portable project</copyright>
2727
<language>en-US</language>
2828
<tags>PCL RestSharp portable OAuth</tags>

RestSharp.Portable.OAuth2.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Supported Platforms:
2222
- Xamarin iOS / MonoTouch
2323
- Portable Class Libraries (.NET 4.0.3+)</description>
2424
<summary>OAuth 2.0 authenticators and clients</summary>
25-
<releaseNotes>- IRestClient now implements IDisposable (Fixes issue #11)</releaseNotes>
25+
<releaseNotes>- Parallel release (Issues #11 and #12 fixed)</releaseNotes>
2626
<copyright>Copyright © Constantin Titarenko, RestSharp.Portable project and others</copyright>
2727
<language>en-US</language>
2828
<tags>PCL RestSharp portable OAuth 2.0 OAuth2</tags>

RestSharp.Portable.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Supported Platforms:
2121
- Xamarin iOS / MonoTouch
2222
- Portable Class Libraries</description>
2323
<summary>Some kind of a RestSharp port to PCL</summary>
24-
<releaseNotes>- IRestClient now implements IDisposable (Fixes issue #11)</releaseNotes>
24+
<releaseNotes>- The HttpClient is now kept alive as long as the RestClient is alive (Fixes issue #11)
25+
- Support for POST parameter values with lengths > 32k (Fixes issue #12)</releaseNotes>
2526
<copyright>Copyright © RestSharp.Portable project 2013-2015</copyright>
2627
<language>en-US</language>
2728
<tags>PCL RestSharp portable</tags>

SharedAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
2525
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2626
// [assembly: AssemblyVersion("1.0.*")]
27-
[assembly: AssemblyVersion("2.0.99.4")]
28-
[assembly: AssemblyFileVersion("2.0.99.4")]
29-
[assembly: AssemblyInformationalVersion("2.0.99.4")]
27+
[assembly: AssemblyVersion("2.1.0")]
28+
[assembly: AssemblyFileVersion("2.1.0")]
29+
[assembly: AssemblyInformationalVersion("2.1.0")]
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.1.0-pre4",
4+
$version = "2.1.0",
55
[Parameter()]
66
$config = "Release"
77
)

0 commit comments

Comments
 (0)