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

Commit 52343cd

Browse files
committed
Bumped version
1 parent 2eea52b commit 52343cd

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

RestSharp.Portable.Encodings/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2828
// [assembly: AssemblyVersion("1.0.*")]
2929
[assembly: AssemblyVersion("1.8.0")]
30-
[assembly: AssemblyFileVersion("1.8.4")]
31-
[assembly: AssemblyInformationalVersion("1.8.4")]
30+
[assembly: AssemblyFileVersion("1.8.5")]
31+
[assembly: AssemblyInformationalVersion("1.8.5")]

RestSharp.Portable.OAuth/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2828
// [assembly: AssemblyVersion("1.0.*")]
2929
[assembly: AssemblyVersion("1.8.0")]
30-
[assembly: AssemblyFileVersion("1.8.4")]
31-
[assembly: AssemblyInformationalVersion("1.8.4")]
30+
[assembly: AssemblyFileVersion("1.8.5")]
31+
[assembly: AssemblyInformationalVersion("1.8.5")]

RestSharp.Portable.OAuth2.Configuration/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
3333
// übernehmen, indem Sie "*" eingeben:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.8.34.4")]
36-
[assembly: AssemblyFileVersion("0.8.34.4")]
35+
[assembly: AssemblyVersion("0.8.34.5")]
36+
[assembly: AssemblyFileVersion("0.8.34.5")]

RestSharp.Portable.OAuth2/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2828
// [assembly: AssemblyVersion("1.0.*")]
2929
[assembly: AssemblyVersion("0.8.0")]
30-
[assembly: AssemblyFileVersion("0.8.34.4")]
31-
[assembly: AssemblyInformationalVersion("0.8.34.4")]
30+
[assembly: AssemblyFileVersion("0.8.34.5")]
31+
[assembly: AssemblyInformationalVersion("0.8.34.5")]

RestSharp.Portable.OAuth2/RestSharp.Portable.OAuth2.nuspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Supported Platforms:
2222
<summary>OAuth 2.0 authenticators and clients</summary>
2323
<releaseNotes>- Signed assembly
2424
- Using Portable.BouncyCastle-Signed
25+
- Try to refresh the access token on a HTTP 401
2526
</releaseNotes>
2627
<copyright>Copyright © Constantin Titarenko and others</copyright>
2728
<language>en-US</language>

RestSharp.Portable/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2828
// [assembly: AssemblyVersion("1.0.*")]
2929
[assembly: AssemblyVersion("1.8.0")]
30-
[assembly: AssemblyFileVersion("1.8.4")]
31-
[assembly: AssemblyInformationalVersion("1.8.4")]
30+
[assembly: AssemblyFileVersion("1.8.5")]
31+
[assembly: AssemblyInformationalVersion("1.8.5")]

RestSharp.Portable/RestSharp.Portable.nuspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ Supported Platforms:
2222
<releaseNotes>- Support for parameters in IRestClient.BaseUrl
2323
- Signed OAuth1/OAuth2 assemblies
2424
- Increased compatibility for empty IRestClient.BaseUrl
25+
- BuildUrl adds a &quot;/&quot; between a base URL and resource if neither of them is empty and the &quot;/&quot; is missing
26+
- Fix BOM for XmlDataContractSerializer
2527
</releaseNotes>
2628
<copyright>Copyright © Mark Junker</copyright>
2729
<language>en-US</language>

nuget-pack.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[OutputType([void])]
22
param(
33
[Parameter()]
4-
$version = "1.8.4",
4+
$version = "1.8.5",
55
[Parameter()]
66
$config = "Release",
77
[Parameter()]
8-
$oauth2version = "0.8.34.4"
8+
$oauth2version = "0.8.34.5"
99
)
1010

1111
& nuget pack .\RestSharp.Portable\RestSharp.Portable.csproj -Properties Configuration=$config -Version $version

0 commit comments

Comments
 (0)