From fa200c5dc3c6de2b5f1583144dcaf4b92c528fa7 Mon Sep 17 00:00:00 2001 From: Haacked Date: Wed, 11 Sep 2013 21:42:46 -0700 Subject: [PATCH 1/2] Update release notes for 104.2.0 --- releasenotes.markdown | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/releasenotes.markdown b/releasenotes.markdown index 0e2e0fe61..858c95820 100644 --- a/releasenotes.markdown +++ b/releasenotes.markdown @@ -1,5 +1,29 @@ # RestSharp Release Notes +## 104.2 + +To see all commits for this version, [click here](https://github.com/RestSharp/RestSharp/compare/104.1...104.2). + +### New Features + +* Allow specifying the body of a `PUT` or `POST` to be specified as a byte array. +* Added `ExecuteAsync` overloads that return `Task` +* Improved handling of nullable types +* Support `DateTimeOffset` to `XmlDeserializer` + +### Bug Fixes + +* Crash if an XML attribute contains empty string +* Adding array of int to request +* Support XAuth parameters for OAuth parameter handling +* Memory leak around handling of Accepts header +* `ConfigureProxy` was not being called for async request +* Serialization for classes with `IList` properties +* Exception when executing async requests on multiple threads with one `RestClient` +* ResponseStatus.Aborted was not being set if request was aborted +* ClientCertificate threw `NotImplementedException` on Mono +* Fix decimal parsing for small decimal values + ## 104.1 * Fixed bug where ExecuteAsync sometimes doesn't send data From a9f9b0406355cd851e7ec0875cbfd53ddcf82a23 Mon Sep 17 00:00:00 2001 From: Haacked Date: Mon, 16 Sep 2013 17:19:59 -0700 Subject: [PATCH 2/2] Remove the beta tag --- RestSharp/SharedAssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RestSharp/SharedAssemblyInfo.cs b/RestSharp/SharedAssemblyInfo.cs index 99d6780fb..4b8031639 100644 --- a/RestSharp/SharedAssemblyInfo.cs +++ b/RestSharp/SharedAssemblyInfo.cs @@ -25,7 +25,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion(SharedAssembylInfo.Version + ".0")] -[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version + "-beta")] +[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version)] [assembly: AssemblyFileVersion(SharedAssembylInfo.Version + ".0")] class SharedAssembylInfo