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 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