Skip to content

Commit f18751f

Browse files
author
Michael Hallett
committed
Published a new dot release to fix an issue with the parameter encoding
1 parent 26f8165 commit f18751f

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.nuget/RestSharp.Build.dll

0 Bytes
Binary file not shown.

.nuget/Signed/RestSharp.Build.dll

0 Bytes
Binary file not shown.

RestSharp/SharedAssemblyInfo.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@
2222
// You can specify all the values or you can default the Build and Revision Numbers
2323
// by using the '*' as shown below:
2424
// [assembly: AssemblyVersion("1.0.*")]
25-
[assembly: AssemblyVersion(SharedAssembylInfo.Version + ".0")]
25+
[assembly: AssemblyVersion(SharedAssemblyInfo.Version + ".0")]
2626

2727
#if !PocketPC
2828
#if SIGNED
29-
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.FileVersion)]
30-
[assembly: AssemblyFileVersion(SharedAssembylInfo.FileVersion + ".0")]
29+
[assembly: AssemblyInformationalVersion(SharedAssemblyInfo.FileVersion)]
30+
[assembly: AssemblyFileVersion(SharedAssemblyInfo.FileVersion + ".0")]
3131
#else
32-
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version)]
33-
[assembly: AssemblyFileVersion(SharedAssembylInfo.Version + ".0")]
32+
[assembly: AssemblyInformationalVersion(SharedAssemblyInfo.Version)]
33+
[assembly: AssemblyFileVersion(SharedAssemblyInfo.Version + ".0")]
3434
#endif
3535
#endif
3636

37-
class SharedAssembylInfo
37+
class SharedAssemblyInfo
3838
{
3939
#if SIGNED
4040
public const string Version = "100.0.0";
41-
public const string FileVersion = "105.0.0";
41+
public const string FileVersion = "105.0.1";
4242
#else
43-
public const string Version = "105.0.0";
43+
public const string Version = "105.0.1";
4444
#endif
4545
}

releasenotes.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# RestSharp Release Notes
22

3+
## 105.0.1
4+
5+
To see all commits for this version, [click here](https://github.com/RestSharp/RestSharp/compare/105.0...105.0.1).
6+
7+
### Bug Fixes
8+
9+
* Reverted changes to parameter encoding
10+
311
## 105.0.0
412

513
To see all commits for this version, [click here](https://github.com/RestSharp/RestSharp/compare/104.5.0...105.0).

0 commit comments

Comments
 (0)